|
@@ -0,0 +1,90 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="41dp"
|
|
|
+ android:background=""
|
|
|
+ android:fitsSystemWindows="true"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginVertical="9dp"
|
|
|
+ android:gravity="end">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:layout_width="25dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@mipmap/ic_message" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="21dp"
|
|
|
+ android:layout_height="0dp" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:layout_width="25dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@mipmap/ic_cart" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="21dp"
|
|
|
+ android:layout_height="0dp" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:layout_width="25dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@mipmap/ic_qrcode" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="13dp"
|
|
|
+ android:layout_height="0dp" />
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="23dp" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="70dp">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/person_avatar"
|
|
|
+ android:layout_width="70dp"
|
|
|
+ android:layout_height="70dp" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="12dp"
|
|
|
+ android:layout_height="match_parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/person_name"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:text="逻辑狗" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ android:id="@+id/person_homepage"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:text="个人主页" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="7dp"
|
|
|
+ android:layout_height="match_parent" />
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+</ScrollView>
|