65 lines
2.8 KiB
XML
65 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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"
|
|
tools:context=".activity.MyBagActivity">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<!-- <com.google.android.material.appbar.AppBarLayout-->
|
|
<!-- android:id="@+id/app_bar_layout"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- android:background="@color/color_transparent"-->
|
|
<!-- app:elevation="0dp"-->
|
|
<!-- app:layout_constraintTop_toTopOf="parent">-->
|
|
|
|
<com.xscm.moduleutil.widget.CustomTopBar
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
/>
|
|
|
|
<com.example.moduletablayout.CustomSlidingTabLayout
|
|
android:id="@+id/sliding_tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toBottomOf="@+id/top_bar"
|
|
android:layout_marginLeft="@dimen/dp_16"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:layout_marginRight="@dimen/dp_16"
|
|
app:tl_indicator_corner_radius="@dimen/dp_3"
|
|
app:tl_indicator_drawable="@drawable/index_bg_indicator"
|
|
app:tl_indicator_height="@dimen/dp_6"
|
|
app:tl_indicator_margin_bottom="@dimen/dp_3"
|
|
app:tl_indicator_width="@dimen/dp_28"
|
|
app:tl_showCateIndicator="false"
|
|
app:tl_tab_width="@dimen/dp_70"
|
|
app:tl_textBold="SELECT"
|
|
app:tl_textSelectColor="@color/color_2B2823"
|
|
app:tl_textSelectedSize="@dimen/sp_16"
|
|
app:tl_textUnselectColor="@color/color_FF999999"
|
|
app:tl_textsize="@dimen/sp_14" />
|
|
<!-- </com.google.android.material.appbar.AppBarLayout>-->
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dp_16"
|
|
android:layout_marginEnd="@dimen/dp_16"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
app:layout_constraintTop_toBottomOf="@+id/sliding_tab_layout"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout> |