查看另一个视图

时间:2015-08-04 15:37:27

标签: java android

我有一个线性布局,其中有一个图像视图。我想在它上面添加一个文本视图。请分享XML代码。

先谢谢。

1 个答案:

答案 0 :(得分:1)

要在ImageView上添加TextView,只需使用RelativeLayout作为父级而不是LinearLayout。例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"            
android:layout_width="match_parent"
android:layout_height="match_parent" 
tools:context=".MainActivity">

<ImageView
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/ic_bubble"
    />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/abc_action_mode_done"
    android:gravity="center_horizontal"
    android:layout_centerVertical="true"
    />

</RelativeLayout>

这将导致叠加:

enter image description here