当涉及以下非常常见的设置时,我正在寻找最佳实践:
我目前正在做的是:
我的主要活动有一个导航抽屉和一个工具栏。当您单击抽屉内的列表项之一时,工具栏下会加载一个片段。一些片段使用 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" />