<?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="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:clickable="true"
|
android:orientation="vertical">
|
|
<View
|
android:id="@+id/view_empty"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:background="@color/transStatusBar" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_weight="2"
|
android:background="@color/lightGray"
|
android:orientation="vertical"
|
>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="@dimen/dimen8"
|
>
|
|
<TextView
|
android:id="@+id/tv_level"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/textSize_16"
|
android:textColor="@color/colorPrimary"
|
android:text="@string/showTown"
|
android:layout_alignParentLeft="true"
|
/>
|
|
<TextView
|
android:id="@+id/tv_submit"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/textSize_16"
|
android:textColor="@color/colorPrimary"
|
android:text="@string/yes"
|
android:layout_alignParentRight="true"
|
/>
|
|
</RelativeLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="horizontal"
|
>
|
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
android:id="@+id/picker_province"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
app:npv_ItemPaddingHorizontal="5dp"
|
app:npv_ItemPaddingVertical="5dp"
|
app:npv_TextSizeNormal="@dimen/textSize_14"
|
app:npv_TextSizeSelected="@dimen/textSize_16"
|
app:npv_WrapSelectorWheel="true"
|
/>
|
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
android:id="@+id/picker_city"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
app:npv_ItemPaddingHorizontal="5dp"
|
app:npv_ItemPaddingVertical="5dp"
|
app:npv_TextSizeNormal="@dimen/textSize_14"
|
app:npv_TextSizeSelected="@dimen/textSize_16"
|
app:npv_WrapSelectorWheel="true"
|
/>
|
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
android:id="@+id/picker_district"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
app:npv_ItemPaddingHorizontal="5dp"
|
app:npv_ItemPaddingVertical="5dp"
|
app:npv_ShowCount="3"
|
app:npv_TextSizeNormal="@dimen/textSize_14"
|
app:npv_TextSizeSelected="@dimen/textSize_16"
|
app:npv_WrapSelectorWheel="true"
|
/>
|
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
android:id="@+id/picker_town"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
app:npv_ItemPaddingHorizontal="5dp"
|
app:npv_ItemPaddingVertical="5dp"
|
app:npv_ShowCount="3"
|
app:npv_TextSizeNormal="@dimen/textSize_14"
|
app:npv_TextSizeSelected="@dimen/textSize_16"
|
app:npv_WrapSelectorWheel="true"
|
/>
|
</LinearLayout>
|
</LinearLayout>
|
|
</LinearLayout>
|