0

我正在尝试在图像下方放置带有标签的图像,我已经尝试了很多但无法阻止图像和文本重叠,这是我的 layout.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:gravity="center"     >

<ImageView
        android:id="@+id/grid_item_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="15dp"
        android:paddingLeft="15dp"/>


<TextView
        android:id="@+id/grid_item_label"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:singleLine="true"
        android:layout_marginLeft="20dp"
        android:paddingLeft="15dp"
        android:textSize="20dp">
</TextView>

4

2 回答 2

6

您可以通过使用 textview 的复合可绘制对象来简化布局。

删除您的图像视图并将 drawableTop 设置为您的文本视图,如下所示:

<TextView  
    android:id="@+id/grid_item_label"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    ...
    android:text="My Text" 
    android:drawableTop="@drawable/my_drawable"/>

您还可以使用setCompoundDrawable 方法在 java 代码中设置可绘制对象

这篇博文中关于这个主题的更多信息。

于 2013-07-26T14:32:25.820 回答
3

将此添加到您的并从中TextView android:layout_below="@+id/grid_item_image"删除android:gravity="center"TextView

于 2013-07-26T14:13:26.150 回答