插入一个TextvView,居于ImageView下方: <RelativeLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="8" android:background="@color/white" android:orientation="vertical"> <ImageView android:id="@+id/contextCover" android:layout_width="match_parent" android:layout_height="wrap_content" android:adjustViewBounds="true" android:scaleType="fitCenter" android:src="@drawable/contextsix" /> </RelativeLayout>
时间: 2023-06-08 13:08:20 浏览: 97
你可以在 RelativeLayout 中添加一个 TextvView 并使用布局属性来定位它在 ImageView 下方。以下是修改后的代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="8"
android:background="@color/white"
android:orientation="vertical">
<ImageView
android:id="@id/contextCover"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/contextsix" />
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is a TextvView"
android:layout_below="@id/contextCover"
android:gravity="center"
android:textSize="20sp" />
</RelativeLayout>
注意,上面的代码将一个 TextvView 添加到了 RelativeLayout 中,并使用 layout_below 属性将其置于 ImageView 下方,并使用 gravity 属性将其居中对齐。你可以根据需要修改 TextView 的内容、字体大小和其他布局属性。
阅读全文