| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:background="@color/white"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true"
- android:orientation="vertical" >
-
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/ll_layout_height_60"
- android:background="@color/oldred"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="请 选 择"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_18" />
-
- <TextView
- android:id="@+id/tv_right"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:textColor="@color/white"
- android:text="确定"
- android:textSize="@dimen/textsize_18" />
- </RelativeLayout>
-
-
-
- <ListView
- android:id="@+id/listview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
-
-
- ></ListView>
-
-
-
-
-
- </LinearLayout>
|