96 lines
3.7 KiB
XML
96 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/gray"
|
|
android:fitsSystemWindows="true"
|
|
android:orientation="vertical"
|
|
tools:context=".ui.activity.ProfileDetailActivity">
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomTitleBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:titleName="个人信息" />
|
|
|
|
<com.kaixed.kchat.ui.widget.ReBoundScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:id="@+id/ci_avatar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:iconRound="0.2"
|
|
app:iconSize="45dp"
|
|
app:itemIcon="@drawable/ic_avatar"
|
|
app:itemName="头像" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:id="@+id/ci_nickname"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:isTopDividerVisible="true"
|
|
app:itemDesc="糕菜菜"
|
|
app:itemName="名字" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:isTopDividerVisible="true"
|
|
app:itemDesc="的八块腹肌,说你好棒"
|
|
app:itemName="拍一拍" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:id="@+id/ci_kid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:isTopDividerVisible="true"
|
|
app:itemDesc="kaixed"
|
|
app:itemName="星联号" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:iconSize="21dp"
|
|
app:isTopDividerVisible="true"
|
|
app:itemIcon="@drawable/icon_qrcode"
|
|
app:itemName="二维码名片" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:isTopDividerVisible="true"
|
|
app:itemName="更多信息" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
app:itemDesc="白月光与朱砂痣"
|
|
app:itemName="来电铃声" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
app:itemName="蔬菜豆" />
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomItem
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
app:itemName="我的地址" />
|
|
</LinearLayout>
|
|
|
|
</com.kaixed.kchat.ui.widget.ReBoundScrollView>
|
|
|
|
|
|
</LinearLayout> |