| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.login.CompanyChooseActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_cpmpany_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="单位名称" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/my_headbg"
- android:layout_marginLeft="9.6dp"
- android:layout_marginTop="11.6dp"
- android:layout_marginRight="9.6dp"
- android:orientation="vertical">
- <com.hjq.widget.SettingBar
- android:id="@+id/company_sheng"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftColorHint="@color/gray"
- app:bar_leftHint="省"
- app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/company_shi"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftColorHint="@color/gray"
- app:bar_leftHint="市"
- app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/company_xian"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftColorHint="@color/gray"
- app:bar_leftHint="县"
- app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/company_cname"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftColorHint="@color/gray"
- app:bar_leftHint="单位"
- app:bar_leftIcon="@mipmap/iv_information_company"></com.hjq.widget.SettingBar>
- </LinearLayout>
- </LinearLayout>
|