<?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"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_marginLeft="@dimen/margin_common"
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_height="match_parent">
|
<androidx.cardview.widget.CardView
|
android:layout_marginTop="@dimen/margin_common"
|
android:layout_marginLeft="@dimen/margin_common"
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
|
<com.google.android.material.tabs.TabLayout
|
android:id="@+id/tab_layout"
|
app:tabIndicatorHeight="0dp"
|
app:tabSelectedTextColor="@color/colorGreen"
|
android:layout_width="match_parent"
|
android:layout_height="50dp">
|
</com.google.android.material.tabs.TabLayout>
|
|
<TextView style="@style/Line"/>
|
|
<TextView
|
android:layout_marginTop="@dimen/margin_common"
|
android:layout_marginBottom="@dimen/margin_common_half"
|
android:gravity="center"
|
android:textSize="48sp"
|
android:text="¥5454545.0"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
</TextView>
|
|
<TextView style="@style/Line"
|
android:layout_marginLeft="40dp"
|
android:layout_marginRight="40dp"
|
/>
|
|
<Button
|
android:id="@+id/btn_withdrawal"
|
android:text="提现"
|
android:layout_marginTop="24dp"
|
android:layout_marginBottom="24dp"
|
android:background="@drawable/shape_button_green"
|
android:paddingTop="@dimen/margin_common"
|
android:paddingBottom="@dimen/margin_common"
|
android:paddingLeft="60dp"
|
android:paddingRight="60dp"
|
android:textColor="@color/white"
|
android:layout_gravity="center"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
|
</Button>
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
|
|
<Spinner
|
android:id="@+id/filter_spinner"
|
android:layout_marginTop="@dimen/margin_common"
|
android:layout_marginBottom="@dimen/margin_common"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
</LinearLayout>
|