我想创建一个应用程序设计像Play商店。这里有一个导航抽屉。当我们点击Store home Navigation Item或(启动应用程序后的第一个片段)时,似乎有tablayout进入AppBarLayout。在Activity
中的代码如下所示<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<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="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
当我们点击一个类别中的应用程序时,App Details Fragment视图似乎是AppbarLayout中的一个CollapsingToolbarLayout。代码类似于....
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
...........
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
所以我如何实现不同的AppbarLayout在不同的片段包含一个抽屉。
我的处理方法是把它们都放在一个布局中:
<android.support.v4.widget.DrawerLayout xmlns: android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" tools:context=".MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout android:id="@+id/app_bar"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:animateLayoutChanges="true" android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.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"/>
<android.support.design.widget.TabLayout android:id="@+id/tabbar"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:visibility="gone" app:tabIndicatorColor="?attr/colorAccent"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout android:id="@+id/fragment_holder"
android:layout_width="match_parent" android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.DrawerLayout>
如您所见,我将TabLayout
可见性设置为gone
。我还使用了FrameLayout
而不是NestedScrollView
(我发现它造成的问题比它解决的问题更多)。我将通过调用
Fragment
:getSupportFragmentManager().beginTransaction()
.replace(R.id.fragment_holder, new_fragment).commit()
然后在我的MainActivity
中,我将有一个返回TabLayout
的方法:
public TabLayout getTabLayout() {
return (TabLayout) findViewById(R.id.tabbar);
}
然后在每个Fragment
中,我将在onResume
中调用该方法,并将TabLayout
设置为可见:
@Override
public void onResume() {
super.onResume();
if(mTabLayout != null) {
mTabLayout.setVisibility(View.VISIBLE);
}
}
在onPause
中,我将删除所有的选项卡,并将可见性设置为gone
:
@Override
public void onPause() {
super.onPause();
mTabLayout.removeAllTabs();
mTabLayout.setVisibility(View.GONE);
}
最后我将TabLayout
设置为onCreateView
:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_home, container, false);
ViewPager viewPager = (ViewPager) view.findViewById(R.id.view_pager);
mTabLayout = ((MainActivity) getActivity()).getTabLayout();
// TODO: set up TabLayout and ViewPager
}
作为旁注,当我试图将Fragment
添加到后堆栈时,我遇到了一些问题:
getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_holder, new_fragment).addToBackStack(null).commit();
我最终扩展了android.support.v4.app.Fragment
,并在MainActivity
中添加了一个在onBackStackChanged()
期间调用的方法,实现了FragmentManager.OnBackStackChangedListener
:
@Override
public void onBackStackChanged() {
((StackFragment) getSupportFragmentManager()
.findFragmentById(R.id.fragment_holder)).onTopOfStack();
}
我将使用onTopOfStack()
而不是onResume()
来更改我的MainActivity
的UI