是否有更简单(更好)的方式来进行此布局?也许使用ConstraintLayout?
3333必须始终位于右下角,而2222位于1111之下。
不确定是否有更好的方法来使用单个RelativeLayout或FrameLayout?
我尝试过Constraint Layout,但Android Studio在移动元素时会有点疯狂。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true">
<LinearLayout
android:id="@+id/LeftLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_margin="10dp"
android:layout_toStartOf="@+id/textView3"
android:orientation="vertical">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="2"
android:text="11111111111111111111111111111111111111111111111111111111" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:text="222222222"
android:visibility="visible" />
</LinearLayout>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3333"
android:layout_alignBottom="@+id/LeftLayout"
android:layout_alignParentEnd="true" />
</RelativeLayout>
答案 0 :(得分:2)
使用ConstraintLayout,您可以创建包含&#34; 111&#34;的文本视图。宽度设置为MATCH_CONSTRAINT
(0dp),高度设置为maxLines和WRAP_CONTENT
。然后将其约束到父级的左侧和顶部,并将右侧约束到包含&#34; 3333&#34;的视图。使用&#34; 222&#34;的视图只是被限制在&#34; 111&#34;的底部。垂直,在父母的左边。 &#34; 333&#34;然后简单地限制在父母的底部和右边。
<?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:padding="8dp"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView7"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="1111111111111111111111111111111111111111111111111111111111"
android:maxLines="2"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toLeftOf="@+id/textView8" />
<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2222222222"
app:layout_constraintTop_toBottomOf="@+id/textView7"
app:layout_constraintLeft_toLeftOf="parent" />
<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3333"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent" />
</android.support.constraint.ConstraintLayout>
答案 1 :(得分:1)
您可以将LinearLayout与权重一起用于这类场景。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="11111111111111111111111111111111111111111" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="2222222222" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="bottom"
android:text="3333" />
</LinearLayout>