<?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/mainBackground" android:orientation="vertical"> <include layout="@layout/include_base_title" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/dp_10" android:background="@drawable/bg_solid_layout_white_radius_10" android:orientation="vertical"> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="用户名" /> <TextView android:id="@+id/userNameView" style="@style/textViewStyle" android:layout_alignParentEnd="true" android:textColor="@color/black" /> </RelativeLayout> <View android:layout_width="match_parent" android:layout_height="@dimen/dividerLine" android:layout_marginHorizontal="@dimen/dp_15" android:background="@color/mainBackground" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="真实姓名" /> <TextView android:id="@+id/userRealNameView" style="@style/textViewStyle" android:layout_alignParentEnd="true" android:textColor="@color/black" /> </RelativeLayout> <View android:layout_width="match_parent" android:layout_height="@dimen/dividerLine" android:layout_marginHorizontal="@dimen/dp_15" android:background="@color/mainBackground" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="所属部门" /> <TextView android:id="@+id/userDeptView" style="@style/textViewStyle" android:layout_alignParentEnd="true" android:textColor="@color/black" /> </RelativeLayout> <View android:layout_width="match_parent" android:layout_height="@dimen/dividerLine" android:layout_marginHorizontal="@dimen/dp_15" android:background="@color/mainBackground" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="手机号" /> <TextView android:id="@+id/userPhoneView" style="@style/textViewStyle" android:layout_alignParentEnd="true" android:textColor="@color/black" /> </RelativeLayout> <View android:layout_width="match_parent" android:layout_height="@dimen/dividerLine" android:layout_marginHorizontal="@dimen/dp_15" android:background="@color/mainBackground" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="IP地址" /> <TextView android:id="@+id/ipAddressView" style="@style/textViewStyle" android:layout_alignParentEnd="true" android:textColor="@color/black" /> </RelativeLayout> </LinearLayout> </LinearLayout>