如何创建这样的gridview列表项

时间:2017-07-08 17:54:37

标签: android gridview listitem

我如何用这样的图片创建这个黑色容器?

enter image description here

1 个答案:

答案 0 :(得分:-1)

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
            android:layout_width="150dp"
            android:layout_height="150dp">

<ImageView
    android:id="@+id/imageView"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:background="#aaee00"/>

<TextView
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_alignParentBottom="true"
    android:background="#55000000"
    android:gravity="center"
    android:text="Dummy text"
    android:textColor="#eeffffff"/>

</RelativeLayout>

希望这有帮助。