| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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">
- <eVVM.apk.widget.RoundHeadbgRectLayout
- android:id="@+id/my_headbg"
- android:layout_width="360dp"
- android:layout_height="220dp"
- app:arcHeight="50dp"
- app:bgColor="#5680FA">
- </eVVM.apk.widget.RoundHeadbgRectLayout>
- <ImageView
- android:id="@+id/my_img_head"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="55dp"
- android:src="@mipmap/iv_my_head" />
- <TextView
- android:id="@+id/my_tv_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/my_img_head"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="10dp"
- android:text="@string/app_name"
- android:textColor="@color/white" />
- <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_marginRight="9.6dp"
- android:orientation="vertical">
- <com.hjq.widget.SettingBar
- android:id="@+id/my_sb_information"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_my_information"
- app:bar_leftText="@string/setting_information"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/sb_setting_explain"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_my_explain"
- app:bar_leftText="@string/setting_explain"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- <com.hjq.widget.SettingBar
- android:id="@+id/sb_setting_about"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_24"
- app:bar_leftIcon="@mipmap/iv_my_about"
- app:bar_leftText="@string/setting_about"
- app:bar_rightIcon="@mipmap/ico_go_black">
- </com.hjq.widget.SettingBar>
- </LinearLayout>
- <Button
- android:id="@+id/my_btn_exit"
- android:layout_width="283dp"
- android:layout_height="48dp"
- android:layout_below="@id/my_select_list"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="38.4dp"
- android:background="@drawable/round_btn"
- android:text="@string/setting_exit"
- android:textSize="15.36sp" />
- </RelativeLayout>
|