xml 自定义AppBar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 自定义AppBar相关的知识,希望对你有一定的参考价值。

    <com.google.android.material.appbar.AppBarLayout

        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/appbar_padding_top"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:layoutDirection="rtl"
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_weight="1"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            app:title="@string/app_name">

        </androidx.appcompat.widget.Toolbar>

        <com.google.android.material.tabs.TabLayout
            app:tabIndicatorHeight="5dp"
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <com.google.android.material.tabs.TabItem
                android:id="@+id/tabItem1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/tab_text_1" />

            <com.google.android.material.tabs.TabItem
                android:id="@+id/tabItem2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/tab_text_2" />

        </com.google.android.material.tabs.TabLayout>
    </com.google.android.material.appbar.AppBarLayout>
 <activity android:name=".ChatActivity"  android:theme="@style/Theme.AppCompat.Light.NoActionBar">

以上是关于xml 自定义AppBar的主要内容,如果未能解决你的问题,请参考以下文章

如何防止 AppBar 覆盖自定义状态栏颜色

Flutter AppBar基本用法、TabBar基本用法、自定义TabBar

自定义 AppBar Flutter

如何创建自定义 AppBar 小部件?

Flutter 自定义 AppBar 动作并将 Appbar 和 Body 一起传递给父级?

Flutter CustomScrollView 自定义滑动效果