5

我想创建一个类似 Play Store 的应用程序。所以有一个导航抽屉。当我们单击 Store home Navigation Item 或(启动应用程序后的第一个片段)时,AppBarLayout中似乎出现了 tablayout。代码在活动中看起来像这样

<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>

当我们单击类别之一中的应用程序时,应用程序详细信息片段视图似乎是 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。请帮我

4

1 回答 1

2

我处理它的方式是将它们全部放在一个布局中:

<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。我还使用了 aFrameLayout而不是 the 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
}

作为旁注,当我尝试将 a 添加Fragment到后台堆栈时遇到了一些问题:

getSupportFragmentManager().beginTransaction()
        .add(R.id.fragment_holder, new_fragment).addToBackStack(null).commit();

我最终扩展并添加了一个在which 实现android.support.v4.app.Fragment期间调用的方法:onBackStackChanged()MainActivityFragmentManager.OnBackStackChangedListener

@Override
public void onBackStackChanged() {
    ((StackFragment) getSupportFragmentManager()
        .findFragmentById(R.id.fragment_holder)).onTopOfStack();
}

我会使用onTopOfStack()而不是onResume()对我的MainActivity.

于 2015-12-23T14:59:16.167 回答