<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context=".MainActivity">
|
|
<com.flyco.tablayout.CommonTabLayout
|
android:id="@+id/tab_bar"
|
android:layout_width="match_parent"
|
android:layout_height="49dp"
|
android:background="@color/white"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:tl_indicator_height="0dp"
|
app:tl_textBold="BOTH"
|
app:tl_textSelectColor="@color/colorPrimary"
|
app:tl_textUnselectColor="@color/textColor99"
|
app:tl_textsize="11sp" />
|
|
<com.dollearn.student.views.NoScrollViewPager
|
android:id="@+id/view_pager"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintBottom_toTopOf="@id/tab_bar"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="4dp"
|
android:background="@drawable/bg_shadow_bottom"
|
app:layout_constraintBottom_toTopOf="@id/tab_bar" />
|
|
<View
|
android:id="@+id/fg_bottom"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:background="@color/halfTrans"
|
android:visibility="gone"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintTop_toTopOf="@id/tab_bar" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|