2020-04-05 13:15:03 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-02-12 13:27:38 +08:00
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-05 13:15:03 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-08-22 22:22:06 +08:00
|
|
|
app:backgroundTint="@color/default_color_window_background"
|
2020-04-05 13:15:03 +08:00
|
|
|
android:id="@+id/background"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-02-12 13:27:38 +08:00
|
|
|
android:orientation="vertical"
|
2020-08-15 22:05:07 +08:00
|
|
|
tools:context=".activities.MainActivity">
|
2020-04-05 13:15:03 +08:00
|
|
|
|
2021-02-12 13:27:38 +08:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2020-04-05 13:15:03 +08:00
|
|
|
android:layout_width="match_parent"
|
2021-02-12 13:27:38 +08:00
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1">
|
2020-04-05 13:15:03 +08:00
|
|
|
|
2021-02-12 13:27:38 +08:00
|
|
|
<com.huanchengfly.tieba.post.widgets.MyViewPager
|
|
|
|
|
android:layout_above="@id/navbar"
|
|
|
|
|
android:layout_below="@id/appbar"
|
|
|
|
|
android:id="@+id/mViewPager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2020-04-05 13:15:03 +08:00
|
|
|
|
2020-08-15 22:05:07 +08:00
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintBottomNavigationView
|
2020-04-05 13:15:03 +08:00
|
|
|
android:id="@+id/navbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
app:bottomNavigationBackgroundTint="@color/default_color_nav"
|
|
|
|
|
app:elevation="4dp"
|
|
|
|
|
app:itemIconTintList="@drawable/bottom_item_icon_tint_list"
|
|
|
|
|
app:itemTextTintList="@drawable/bottom_item_icon_tint_list"
|
|
|
|
|
app:labelVisibilityMode="unlabeled"
|
|
|
|
|
app:menu="@menu/navbar_main" />
|
|
|
|
|
|
2021-02-12 13:27:38 +08:00
|
|
|
</com.huanchengfly.tieba.post.widgets.theme.TintLinearLayout>
|