使用带抽屉的活动,滚动工具栏,选项卡和不同的片段

时间:2015-10-08 05:24:05

标签: android toolbar android-design-library coordinator-layout nestedscrollview

我正在寻找以下非常常见的设置的最佳实践:

我目前正在做的是:

我的主要活动有一个导航抽屉和一个工具栏。 单击抽屉内的一个列表项时,工具栏下会加载一个片段。一些片段使用viewpager等内部有自己的选项卡。

我想利用材料功能,例如在滚动时隐藏工具栏等。完成它没有问题。 但是只有一些片段想要使用滚动工具栏时会出现问题。如果你可以在底部添加额外的边距,使用普通的Scrollview确实可以解决问题,但是一旦你有了键盘,它就会因为滚动错误而搞乱。使用nestedscrollview可以工作,但会滚动工具栏。 那么当我的活动持有工具栏时,如何避免滚动工具栏,滚动的一些片段应该使用它而有些不能使用?

建筑设计错了吗?我想的另一件事就是在每个片段中都有不同的工具栏......但是他们必须共享相同的导航抽屉,所以你必须每次创建和添加ToggleButton?这是正确的方法吗?我应该走那条路吗?我不相信,并希望有一个比我更有经验的人的意见。在这种情况下,什么是最好的解决方案。

感谢您的帮助! 干杯

编辑: 主要活动

<android.support.v4.widget.DrawerLayout
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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">


<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/fragment_container_first"

    >

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        >


        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        </android.support.v7.widget.Toolbar>


    </android.support.design.widget.AppBarLayout>


    <LinearLayout
        android:id="@+id/owner_main_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/appBar"
        android:orientation="horizontal"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab_add"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/fab_margin"
        android:src="@drawable/addicon"
        app:fabSize="normal"
        app:layout_anchor="@id/owner_main_container"
        app:layout_anchorGravity="bottom|right|end"
        app:layout_behavior="xxx.Classes.Misc.ScrollAwareFABBehavior"
        />

</android.support.design.widget.CoordinatorLayout>
<!-- The navigation drawer -->
<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:menu="@menu/drawerhost" />

1 个答案:

答案 0 :(得分:1)

我也在使用导航抽屉和工具栏,请从this link导入项目  并尝试了解如何使用片段

使用导航抽屉和工具栏