mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-27 21:27:41 +08:00
45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<FrameLayout 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:ignore="MergeRootFrame">
|
||
|
||
<com.google.android.material.appbar.AppBarLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:theme="@style/AppTheme.AppBarOverlay"
|
||
app:elevation="0dp">
|
||
|
||
<androidx.appcompat.widget.Toolbar
|
||
android:id="@+id/toolbar"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="?attr/actionBarSize"
|
||
android:background="?attr/colorPrimary"
|
||
app:popupTheme="@style/AppTheme.PopupOverlay"
|
||
app:titleTextColor="@color/xui_config_color_white" />
|
||
|
||
</com.google.android.material.appbar.AppBarLayout>
|
||
|
||
<!-- ViewPager,页面填充页 -->
|
||
<androidx.viewpager.widget.ViewPager
|
||
android:id="@+id/view_pager"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:layout_marginTop="?actionBarSize"
|
||
android:layout_marginBottom="?actionBarSize"
|
||
android:overScrollMode="never" />
|
||
|
||
<!-- 底部导航栏 -->
|
||
<com.google.android.material.bottomnavigation.BottomNavigationView
|
||
android:id="@+id/bottom_navigation"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="?actionBarSize"
|
||
android:layout_gravity="bottom"
|
||
android:background="@color/xui_config_color_white"
|
||
app:labelVisibilityMode="labeled"
|
||
app:menu="@menu/menu_navigation_bottom" />
|
||
|
||
</FrameLayout>
|