我试图找到一种方法来保持复杂布局中的文本视图统一对齐。有没有办法将“1B”TextView
直接定位在“1A”下方TextView
和“1C”上方,TextView
同时避免过多嵌套?
注意:“1B”和“1C”TextViews
一起RelativeLayout
作为可扩展的一部分RecyclerView
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
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="wrap_content"
android:background="@android:color/white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/linearLayoutA">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/relativeLayoutA">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ibA"
android:src="@mipmap/ic_launcher_round"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tvA"
android:layout_toEndOf="@+id/ibA"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/relativeLayoutB">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tvB"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ivC"
android:src="@mipmap/ic_launcher_round"
android:layout_below="@id/tvB"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tvC"
android:layout_below="@id/tvB"
android:layout_toEndOf="@id/ivC"/>
</RelativeLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>