| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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.My.change.ChangeIFMTActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_information_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="@string/setting_information" />
- <LinearLayout
- android:id="@+id/my_select_list"
- 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/change_setting_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_information_name"
- app:bar_leftText="修改姓名"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/change_setting_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_phone_icon"
- app:bar_leftText="修改手机号"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/change_setting_pwd"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_pwd_icon"
- app:bar_leftText="修改密码"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/change_setting_email"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_information_email"
- app:bar_leftText="修改邮箱"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- </LinearLayout>
- </LinearLayout>
|