想办法解决这个小问题。
下面的左侧是我尝试为应用程序实现的视图示例。右侧是我最终得到的视图。
在我的 xml 模型中,我决定使用 aRelativeLayout
但我无法TextView
在顶部和底部视图之间居中。
作为参考,这里是我的 xml 代码的表示:
<RelativeLayout
android:layout_width:"match_parent"
android:layout_height:"wrap_content">
<ImageView
android:id="@+id/BlackImage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:layout_alightParentTop="true"
android:layout_centerHorizontal="true"/>
<ImageView
android:id="@+id/RedImage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:layout_below="@+id/BlackImage"
android:layout_centerHorizontal="true"/>
<TextView
android:id="@+id/TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/BlackImage"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
知道我缺少什么,或者如何改变以获得我想要的东西吗?