我有一个活动,该活动的一个元素植根于顶部,而另一个元素应占据剩余的可用空间。第一个元素的内容将随时间变化,并且需要不同的空间量,第二个元素需要随之更改大小。这是我已经拥有的简化版本:
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:id="@+id/textview_A"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
/>
<TextView
android:id="@+id/textview_B"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/textview_A"
app:layout_constraintBottom_toBottomOf="parent"
/>
</android.support.constraint.ConstraintLayout>
当前的方式是,顶部元素正确,但第二个元素不正确。它将位置调整为在top元素的底部和父元素的底部的中间,但是其高度与它的内容相同,而不是所有可用空间。我该如何实现?
答案 0 :(得分:0)
设置版面权重= 1 android:layout =“ 1”
答案 1 :(得分:0)
在发布这样的问题之前,请先搜索。
以前有关此问题的一些
将android:layout_height
中的@id/testview_B
更改为0dp
。像是
<TextView
android:id="@+id/textview_B"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/textview_A"
app:layout_constraintBottom_toBottomOf="parent"
/>
答案 2 :(得分:0)
或者,尝试像这样的线性布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:text="text" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="D" />
</LinearLayout>
请注意以下特殊代码段:
android:layout_width="0dp"
android:layout_weight="1"