location_select_activity.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <com.sheishuo.app.common.views.BaseToolbar
  8. android:id="@+id/toolbar"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. app:title="地区选择"
  12. app:right_text="确定"
  13. style="@style/fullToolbarStyle"/>
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="horizontal"
  18. android:gravity="center"
  19. android:padding="8dp">
  20. <com.sheishuo.app.common.views.WheelView
  21. android:id="@+id/location_select_province"
  22. android:layout_weight="1"
  23. android:layout_width="128dp"
  24. android:layout_height="wrap_content"/>
  25. <com.sheishuo.app.common.views.WheelView
  26. android:id="@+id/location_select_city"
  27. android:layout_weight="1"
  28. android:layout_width="128dp"
  29. android:layout_height="wrap_content"/>
  30. <com.sheishuo.app.common.views.WheelView
  31. android:id="@+id/location_select_area"
  32. android:layout_weight="1"
  33. android:layout_width="128dp"
  34. android:layout_height="wrap_content"/>
  35. </LinearLayout>
  36. </LinearLayout>