我正在尝试创建一个自定义的 gridview 项目,它看起来像电影在这张图片中的显示方式:
从某种意义上说,他们如何在顶部有一个图像,在它下面有两个或三个文本视图。我为此使用了以下 XML 代码,但没有得到所需的布局。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:layout_marginBottom="5dp"
android:background="@drawable/bg_card"
>
<TextView
android:id="@+id/txtTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginBottom="2dp"
android:layout_marginTop="2dp"
android:gravity="center_vertical"
android:padding="2dip"
android:textColor="@color/palletblue"
android:textAppearance="@android:attr/textAppearanceLarge"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@+id/txtTitle2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginBottom="2dp"
android:layout_marginTop="2dp"
android:layout_below="@id/txtTitle"
android:gravity="center_vertical"
android:padding="2dip"
android:textAppearance="@android:attr/textAppearanceLarge"
android:textColor="#878787"
android:textSize="12sp"
android:textStyle="bold" />
<TextView
android:id="@+id/txtTitle3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/txtTitle2"
android:layout_marginBottom="2dp"
android:layout_marginTop="2dp"
android:gravity="center_vertical"
android:padding="2dip"
android:textAppearance="@android:attr/textAppearanceLarge"
android:textColor="#878787"
android:textSize="12sp"
android:textStyle="bold" />
<ImageView
android:id="@+id/imgIcon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_above="@id/txtTitle"
android:layout_marginBottom="3dp"
android:gravity="center_vertical"
android:padding="2dip"
/>
</RelativeLayout>
</FrameLayout>
我在哪里错了?谢谢