1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="地区选择"
- app:right_text="确定"
- style="@style/fullToolbarStyle"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center"
- android:padding="8dp">
- <com.sheishuo.app.common.views.WheelView
- android:id="@+id/location_select_province"
- android:layout_weight="1"
- android:layout_width="128dp"
- android:layout_height="wrap_content"/>
- <com.sheishuo.app.common.views.WheelView
- android:id="@+id/location_select_city"
- android:layout_weight="1"
- android:layout_width="128dp"
- android:layout_height="wrap_content"/>
- <com.sheishuo.app.common.views.WheelView
- android:id="@+id/location_select_area"
- android:layout_weight="1"
- android:layout_width="128dp"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- </LinearLayout>
|