我正在尝试使用扁平化的ConstraintLayout在Android中创建类似于这种结构的内容:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout_button_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<Button
android:id="@+id/button0"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 0" />
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 1" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
要点是,我希望视图底部有一系列统一的按钮,这些按钮可以适应不同数量的文本进行本地化。
最初,我发现了Barriers might be a good way to get this to work。这样做的问题是,它要求您对每个障碍视图使用wrap_content
。这意味着除非按钮的行数相同,否则按钮的大小将有所不同,这不是目标。
是否有办法(使用障碍物或其他方法)确保我的按钮保持在最高按钮的高度?