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

テキストビューの複合ドローアブルを使用すると、レイアウトを簡素化できます。

画像ビューを削除し、次のように 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 に答える