|
|
@@ -2,59 +2,63 @@
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:id="@+id/game_account_layout"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#F5F5F5">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/tip_view"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_height="54dp"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:background="#ffffff"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:paddingLeft="15dp"
|
|
|
android:text="关联的游戏账号"
|
|
|
- android:textColor="@color/black_333333"
|
|
|
+ android:textColor="#000000"
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/face_view"
|
|
|
- android:layout_width="60dp"
|
|
|
- android:layout_height="60dp"
|
|
|
- android:layout_below="@+id/tip_view"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- android:scaleType="centerCrop"
|
|
|
- android:src="@mipmap/ic_assist" />
|
|
|
-
|
|
|
<TextView
|
|
|
- android:id="@+id/nickname_view"
|
|
|
+ android:id="@+id/number_view"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignTop="@+id/face_view"
|
|
|
- android:layout_marginLeft="8dp"
|
|
|
- android:layout_marginTop="6dp"
|
|
|
- android:layout_toRightOf="@+id/face_view"
|
|
|
- android:text="Kevin"
|
|
|
- android:textColor="@color/black_333333"
|
|
|
- android:textSize="16sp" />
|
|
|
+ android:layout_height="54dp"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginRight="16dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textSize="15sp" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/loginname_view"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignBottom="@+id/face_view"
|
|
|
- android:layout_marginLeft="8dp"
|
|
|
- android:layout_marginBottom="6dp"
|
|
|
- android:layout_toRightOf="@+id/face_view"
|
|
|
- android:text="sfadljf"
|
|
|
- android:textColor="@color/black_333333"
|
|
|
- android:textSize="16sp" />
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="54dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:background="#ffffff"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_below="@+id/tip_view">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/number_view"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignBottom="@+id/nickname_view"
|
|
|
- android:layout_marginLeft="8dp"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- android:layout_toRightOf="@+id/nickname_view"
|
|
|
- android:text="(12312312)"
|
|
|
- android:textColor="@color/black_333333"
|
|
|
- android:textSize="12sp" />
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/face_view"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
+ android:scaleType="centerCrop" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/nickname_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:textColor="@color/black_333333"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/loginname_view"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginRight="15dp"
|
|
|
+ android:textColor="@color/black_333333"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|