如何冻结活动顶部的工具栏?

时间:2019-02-11 10:03:06

标签: android android-layout toolbar

我试图将我的工具栏固定在顶部,就像普通的“操作栏”一样,就像当您单击Twitter帖子时一样,无论您向下滚动多少,工具栏的顶部都将停留在顶部。

我找到了许多有关“如何使工具栏崩溃和其他酷效果”的指南,但我要从中获得的作用是充当操作栏并保持顶部,是否有一种简单的方法来实现这一目标?不使用(CoordinatorLayout,CollapsingToolbarLayout,...)

2 个答案:

答案 0 :(得分:2)

是的,您可以将工具栏固定在活动的顶部,因为您必须像这样创建一个名为toolbar_layout的布局文件

<android.support.v7.widget.Toolbar
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?android:actionBarSize"
        android:background="@color/colorPrimary"
        app:contentInsetLeft="0dp"
        app:contentInsetStart="0dp"
        app:contentInsetStartWithNavigation="0dp"
        android:theme="@style/ToolbarStyle"
        app:titleTextColor="@color/colorWhite"
        app:subtitleTextColor="@color/colorWhite"
        app:titleTextAppearance="@style/ToolbarStyle"/>

在活动布局中,即activity_main文件中应包括以下内容:-

<LinearLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

    <include layout="@layout/toolbar_layout"/> 
</LinearLayout>

在设计完相应的布局之后

欢呼快乐编码。

答案 1 :(得分:0)

您可以像这样制作布局xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize" />

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:fillViewport="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <!-- Your content here -->

        </LinearLayout>

    </android.support.v4.widget.NestedScrollView>

</LinearLayout>

或如果有列表,则放RecyclerView而不是ScrollView + LinearLayout