Newer
Older
DownApp / app / src / main / res / layout / item_cate.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="8dp"
                android:background="@drawable/press_white_t_gray">

    <ImageView
        android:id="@+id/cate_image"
        android:layout_centerVertical="true"
        android:scaleType="fitXY"
        android:layout_width="40dp"
        android:layout_marginRight="10dp"
        android:layout_height="40dp"/>

    <TextView
        android:id="@+id/cate_name"
        android:textColor="#000000"
        android:layout_toRightOf="@+id/cate_image"
        android:layout_width="match_parent"
        android:textSize="16sp"
        android:layout_height="wrap_content"/>

    <TextView
        android:id="@+id/cate_desc"
        android:textColor="#a3a3a3"
        android:layout_toRightOf="@+id/cate_image"
        android:layout_width="match_parent"
        android:textSize="8sp"
        android:maxLines="2"
        android:lines="2"
        android:layout_marginTop="5dp"
        android:layout_below="@+id/cate_name"
        android:layout_height="wrap_content"/>



</RelativeLayout>