360 lines
14 KiB
XML
360 lines
14 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_mine"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#fff"
|
|
android:paddingTop="@dimen/top_pind_sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_mine"
|
|
style="@style/text_style_toolbar_title"
|
|
android:layout_width="wrap_content"
|
|
android:text="我的"
|
|
android:textColor="#000" />
|
|
</RelativeLayout>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/constraintLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="140dp"
|
|
android:background="@mipmap/bg"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_mine">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_heard"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_margin="20dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.3" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:text="NO7378"
|
|
android:textColor="#fff"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintBottom_toBottomOf="@+id/image_heard"
|
|
app:layout_constraintStart_toEndOf="@+id/image_heard"
|
|
app:layout_constraintTop_toTopOf="@+id/image_heard" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image_share"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginRight="15dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@drawable/icon_event_prefecture"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image_sign"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="15dp"
|
|
android:background="@drawable/icon_capacity_evaluation"
|
|
app:layout_constraintBottom_toBottomOf="@+id/image_heard"
|
|
app:layout_constraintEnd_toEndOf="@+id/image_share"
|
|
app:layout_constraintTop_toBottomOf="@+id/image_share" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginLeft="35dp"
|
|
android:layout_marginRight="35dp"
|
|
app:layout_constraintBottom_toTopOf="@+id/linearLayout"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="20dp"
|
|
android:text="总资产(元)"
|
|
android:textColor="#333"
|
|
android:textSize="15sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_money"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0.0"
|
|
android:textColor="#000"
|
|
android:textSize="40sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="@+id/tv_title"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_title" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_withdraw"
|
|
style="@style/main_style"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="40dp"
|
|
android:layout_marginRight="20dp"
|
|
android:text="去提现"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/linearLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginLeft="35dp"
|
|
android:layout_marginTop="60dp"
|
|
android:layout_marginRight="35dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/constraintLayout">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_grade"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="18dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground">
|
|
|
|
<TextView
|
|
style="@style/main_text_style"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="我的等级" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:drawableRight="@drawable/ic_baseline_arrow_forward"
|
|
android:gravity="center"
|
|
android:text="LV.1"
|
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_privilege"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="我的特权"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentLeft="true"
|
|
style="@style/main_text_style" />
|
|
<TextView
|
|
android:layout_width="45dp"
|
|
android:layout_height="20dp"
|
|
android:text="new"
|
|
android:gravity="center_horizontal"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_outLogin_style"
|
|
android:layout_toLeftOf="@id/image_view"
|
|
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/image_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:gravity="center"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="地图下载"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_text_style" />
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_issue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="常见问题"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_text_style"/>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_contact"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="联系我们"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_text_style" />
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_set"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="设置"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_text_style" />
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="关于"
|
|
android:layout_centerVertical="true"
|
|
style="@style/main_text_style" />
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ic_baseline_arrow_forward"
|
|
android:textSize="18sp" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F1F0F0" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_quit"
|
|
style="@style/main_outLogin_style"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_margin="10dp"
|
|
android:layout_weight="1"
|
|
android:text="退出登录" />
|
|
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |