44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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"
|
|
tools:context=".dialog.RequestDialogFragment">
|
|
|
|
<data></data>
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="false"
|
|
android:background="@drawable/bg_r16_tb_ffffff">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/sliding_tab_layout"
|
|
android:layout_width="@dimen/dp_200"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="@dimen/dp_27"
|
|
android:layout_marginStart="@dimen/dp_24"
|
|
android:layout_marginEnd="@dimen/dp_24"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tl_tab_space_equal="true"
|
|
app:tl_indicator_width="0dp"
|
|
app:tl_textBold="BOTH"
|
|
app:tl_textSelectColor="@color/color_FF333333"
|
|
app:tl_textUnselectColor="@color/color_FF999999"
|
|
app:tl_textsize="14sp"
|
|
app:tabIndicatorHeight="0dp"
|
|
/>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/vp_request"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="false"
|
|
app:layout_constraintTop_toBottomOf="@+id/sliding_tab_layout"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout> |