defa948394e5e8e410665a457075ff1cd5d9376d.svn-base 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".ui.login.CompanyChooseActivity">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_cpmpany_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. app:title="单位名称" />
  14. <LinearLayout
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_below="@id/my_headbg"
  18. android:layout_marginLeft="9.6dp"
  19. android:layout_marginTop="11.6dp"
  20. android:layout_marginRight="9.6dp"
  21. android:orientation="vertical">
  22. <com.hjq.widget.SettingBar
  23. android:id="@+id/company_sheng"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_marginTop="@dimen/space_24"
  27. app:bar_leftColorHint="@color/gray"
  28. app:bar_leftHint="省"
  29. app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
  30. <com.hjq.widget.SettingBar
  31. android:id="@+id/company_shi"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:layout_marginTop="@dimen/space_24"
  35. app:bar_leftColorHint="@color/gray"
  36. app:bar_leftHint="市"
  37. app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
  38. <com.hjq.widget.SettingBar
  39. android:id="@+id/company_xian"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:layout_marginTop="@dimen/space_24"
  43. app:bar_leftColorHint="@color/gray"
  44. app:bar_leftHint="县"
  45. app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
  46. <com.hjq.widget.SettingBar
  47. android:id="@+id/company_cname"
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:layout_marginTop="@dimen/space_24"
  51. app:bar_leftColorHint="@color/gray"
  52. app:bar_leftHint="单位"
  53. app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
  54. </LinearLayout>
  55. </LinearLayout>