将标题放在ImageView顶部可以通过以下步骤实现:
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="200dp"
android:scaleType="centerCrop"
android:src="@drawable/image" />
<TextView
android:id="@+id/titleTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView"
android:text="Your Title"
android:textSize="24sp" />
在这个例子中,TextView的android:layout_below属性指定了它位于ImageView的下方。
完成上述步骤后,你就可以在ImageView的顶部添加标题了。你可以根据自己的需求调整布局和样式。
领取专属 10元无门槛券
手把手带您无忧上云