46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:background="@drawable/ll_selector"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/kind_iv_icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center_vertical"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/kind_tv_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:text="游戏" />
|
|
|
|
<ImageView
|
|
android:id="@+id/kind_iv_detail"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="20dp"
|
|
android:background="@drawable/ic_kind_detail" />
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/include_line_horizontal" />
|
|
|
|
</LinearLayout> |