<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:orientation="vertical"
|
android:layout_height="match_parent"
|
tools:context=".patient.ui.withdrawal.WithDrawalActivity">
|
|
<include layout="@layout/toolbar" />
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:id="@+id/contentLinearLayout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
|
<cn.wildfire.chat.kit.widget.ViewPagerFixed
|
android:id="@+id/contentViewPager"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1" />
|
|
<!--底部-->
|
<View style="@style/Line" />
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
android:id="@+id/bottomNavigationView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/gray14"
|
app:itemTextColor="@color/bottom_nav_color"
|
app:labelVisibilityMode="labeled"
|
app:menu="@menu/with_drawal_bottom" />
|
<!--app:labelVisibilityMode="labeled"-->
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/startingTextView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:text="收益计算中..." />
|
</FrameLayout>
|
</LinearLayout>
|