根据片段显示编辑工具栏

时间:2016-02-27 05:55:20

标签: android android-fragments android-toolbar

n我的主要活动我有一个导航抽屉,通过点击它我加载不同的片段,如主页,购物车,设置等。最初在我的主要活动中我得到了带有微调器和按钮的工具栏导航抽屉也是如此。但对于其他片段,我需要根据需要自定义工具栏。

  

以下是我的activity_main.xml的实现方式:

${...}

然后我根据片段加载(在主要活动内部)实现了一个自定义工具栏的方法:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/navigation_drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="@bool/fitsSystemWindows">

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

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="@dimen/status_bar_kitkat_height"
            android:background="?colorPrimary" />

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="@dimen/status_bar_lollipop_height"
            android:background="?colorPrimaryDark" />

    </LinearLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/status_bar_margin_top">

        <FrameLayout
            android:id="@+id/fragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="?actionBarSize" />

            <!--include different toolbars into the activity dont know this is correct implementation... If I missed any of them It gives me a null pointer exception in MainActivity..-->


        <include
            android:id="@+id/toolbar_cart"
            layout="@layout/toolbar_cart" />

        <include
            android:id="@+id/toolbar_home"
            layout="@layout/toolbar_home" />


    </FrameLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="@bool/fitsSystemWindows"
        app:headerLayout="@layout/navigation_drawer_header"
        app:menu="@menu/navigation_drawer_menu"
        app:theme="@style/NavigationViewTheme" />

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

然后我在NavigationItemSelectedListener中调用该方法,如下所示:

public void customizeToolBar(int position) {
        switch (position) {
            case 0:
                toolbar = (Toolbar) findViewById(R.id.toolbar_home);
                setSupportActionBar(toolbar);
                subCategories_spinner = (Spinner) findViewById(R.id.spinner_subCategories);
                actionBar = getSupportActionBar();
                actionBar.setHomeAsUpIndicator(R.drawable.ic_menu);
                actionBar.setDisplayHomeAsUpEnabled(true);
                actionBar.setDisplayShowTitleEnabled(false);
                break;
            case 1:
                toolbar = (Toolbar) findViewById(R.id.toolbar_cart);
                setSupportActionBar(toolbar);
                actionBar = getSupportActionBar();
                actionBar.setTitle("Check Out");
                actionBar.setDisplayHomeAsUpEnabled(true);
                break;
                ....

但这不起作用。每次都显示相同的工具栏。我刚接触到android。任何有关这项工作的建议都将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:1)

这个问题有很多解决方案。

如果您添加了不同的工具栏,则可以添加集android:visibility=""

例如:

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:minHeight="?attr/actionBarSize"
        android:background="#2196F3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone">
    </android.support.v7.widget.Toolbar>

更改片段时设置工具栏可见性:

toolbar.setVisibility(View.VISIBLE);

或者您可以在片段中编辑工具栏:

Toolbar toolbar = (Toolbar) getActivity().findViewById(R.id.toolbar);

从主活动中获取工具栏并进行编辑。