71 lines
2.4 KiB
XML
71 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/cardView"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center_horizontal"
|
|
app:cardCornerRadius="6dp"
|
|
app:cardElevation="2dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
|
|
android:background="@drawable/item_selector"
|
|
>
|
|
|
|
<ImageView
|
|
|
|
android:layout_weight="0"
|
|
android:padding="2dp"
|
|
android:layout_marginTop="5dp"
|
|
android:id="@+id/imageViewCate"
|
|
android:layout_width="80dp"
|
|
android:layout_height="100dp"
|
|
android:scaleType="fitCenter"
|
|
android:layout_gravity="center_horizontal"
|
|
android:src="@drawable/googleg_standard_color_18"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/tvCateName"
|
|
style="@style/TextViewCateTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="玄幻奇幻"/>
|
|
<TextView
|
|
android:id="@+id/tvCateNums"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/lightblue"
|
|
android:text="8888"
|
|
/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|