我想调整以编程方式添加到我的Android应用(Java代码)的按钮的大小。它们以默认的宽度和高度(因为没有内容)添加到布局中。我希望它们调整为屏幕大小的1/9,以填充整个屏幕(连续9个按钮以填充屏幕宽度)。我试图获取屏幕宽度(或父容器宽度,使其适合屏幕宽度)。但是只有0dp。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:id="@+id/tabMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>
将按钮作为LinearLaout的子级(宽度和高度match_parent)添加到tabMain(ConstraintLayout中的LineararLayout)
根ConstraintLayout的大小为全屏宽度,但是LinearLayout tabMain仅为按钮9x按钮宽度(插入9个按钮的原因。)>
我想调整以编程方式添加到我的Android应用(Java代码)的按钮的大小。它们以默认的宽度和高度(因为没有内容)添加到布局中。我希望它们调整为...的1/9 ...
[尝试使用宽度match_parent和weightsum 9的水平线性布局,