You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
|
3 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="60dp"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_marginBottom="1dp"
|
||
|
|
android:background="@android:color/white"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/iv"
|
||
|
|
android:layout_width="@dimen/px_50"
|
||
|
|
android:layout_height="@dimen/px_50"
|
||
|
|
android:layout_gravity="center_vertical"
|
||
|
|
android:src="@mipmap/yj" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_vertical"
|
||
|
|
android:layout_marginLeft="@dimen/px_25"
|
||
|
|
android:layout_marginRight="@dimen/px_25"
|
||
|
|
android:textColor="@android:color/black"
|
||
|
|
android:textSize="18sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
tools:text="一级Item" />
|
||
|
|
</LinearLayout>
|