location_select_activity.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. style="@style/fullToolbarStyle"/>
  12. <LinearLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:gravity="center"
  16. android:orientation="horizontal">
  17. <com.sheishuo.app.common.views.WheelView
  18. android:id="@+id/location_select_province"
  19. android:layout_width="10dp"
  20. android:layout_height="match_parent"
  21. android:layout_weight="1" />
  22. <com.sheishuo.app.common.views.WheelView
  23. android:id="@+id/location_select_city"
  24. android:layout_width="10dp"
  25. android:layout_height="match_parent"
  26. android:layout_weight="1" />
  27. <com.sheishuo.app.common.views.WheelView
  28. android:id="@+id/location_select_area"
  29. android:layout_width="10dp"
  30. android:layout_height="match_parent"
  31. android:layout_weight="1" />
  32. </LinearLayout>
  33. </LinearLayout>