<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<View
|
android:id="@+id/v_status_bar"
|
android:layout_width="match_parent"
|
android:layout_height="15dp" />
|
|
<include layout="@layout/navigation_top_bar"></include>
|
|
<LinearLayout
|
android:id="@+id/ll_portrait_select"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:layout_marginTop="10dp"
|
android:background="@color/white"
|
android:orientation="horizontal">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="头像" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<ImageView
|
android:id="@+id/iv_portrai_select"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
android:layout_gravity="center_vertical"
|
android:layout_marginRight="22.5dp"
|
android:scaleType="centerCrop"
|
android:src="@drawable/ic_portrait_default" />
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:layout_marginRight="20dp"
|
android:src="@drawable/ic_person_info_array_right" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_nickName"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="1dp"
|
android:background="@color/white">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="昵称" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_nickName"
|
style="@style/personInfoContentStyle"
|
android:text="编辑昵称" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/ll_sex"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="1dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="性别" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_sex"
|
style="@style/personInfoContentStyle"
|
android:text="男" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_birthday"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="1dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="生日" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_birthday"
|
style="@style/personInfoContentStyle"
|
android:text="点击设置生日" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/ll_id"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="1dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="ID" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_id"
|
style="@style/personInfoContentStyle"
|
android:drawableRight="@null"
|
android:text="" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/ll_email"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="1dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="邮箱" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_email"
|
style="@style/personInfoContentStyle"
|
android:drawableRight="@null"
|
android:text="" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/ll_autograph"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="10dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="个性签名" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/tv_autograph"
|
style="@style/personInfoContentStyle"
|
android:ellipsize="end"
|
android:maxWidth="200dp"
|
android:maxLines="2"
|
android:text="未填写" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/ll_advice"
|
style="@style/personInfoItemStyle"
|
android:layout_width="match_parent"
|
android:layout_marginTop="1dp">
|
|
<TextView
|
style="@style/personInfoTitleStyle"
|
android:text="意见反馈" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_weight="1" />
|
|
<TextView
|
style="@style/personInfoContentStyle"
|
android:text="" />
|
</LinearLayout>
|
|
|
</LinearLayout>
|