从导航抽屉返回主页(activity_main)

时间:2016-12-14 07:42:49

标签: android navigation-drawer

自昨天上午以来,我一直在努力解决这个问题。我熟悉C ++(只是声明我有编程经验)。我正在学习android编程。当我的应用程序启动时,它会启动一项活动。我怀疑它是

setContentView(R.layout.activity_main);

在我的导航抽屉里,我有3件物品。一个被称为" Piggy Bank"这被认为是导航之家。 "格拉夫"和"设置"是其他2.我想要它,所以当有人点击" Piggy Bank"在导航抽屉中,它会返回到程序启动时加载的原始屏幕。这需要在不创建新活动的情况下完成,主屏幕中的数据很重要,回到它时不应该被清除。它应该包含留在那里的数据。

这是我试过的

   public boolean onNavigationItemSelected(MenuItem item) {
        // Handle navigation view item clicks here.
        int id = item.getItemId();
        android.app.FragmentManager fragmentManager = getFragmentManager();

        if (id == R.id.nav_PiggyBank) {
            setContentView(R.layout.activity_main);
            Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
            setSupportActionBar(toolbar);
            // getActionBar().setDisplayHomeAsUpEnabled(true);

            DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
            ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                    this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
            drawer.setDrawerListener(toggle);
            toggle.syncState();

            NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
            navigationView.setNavigationItemSelectedListener(this);
            // ATTENTION: This was auto-generated to implement the App Indexing API.
            // See https://g.co/AppIndexing/AndroidStudio for more information.
            client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();

        } else if (id == R.id.nav_Graph) {
            fragmentManager.beginTransaction()
                    .replace(R.id.content_frame
                            , new Graph())
                    .commit();
        } else if (id == R.id.nav_Settings) {
            fragmentManager.beginTransaction()
                    .replace(R.id.content_frame
                            , new UserSettings())
                    .commit();
        }


        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        drawer.closeDrawer(GravityCompat.START);
        return true;
    }

这是我的activity_main

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" />

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

1 个答案:

答案 0 :(得分:1)

您应该将if(id == R.id.nav_PiggyBank){...}案例中的所有内容放入活动的onCreateMethod中。在if-case中你应该告诉FragmentManager用你的PiggyBankFragment替换当前的片段容器(R.id.content_frame)......就像你在其他if-else案例中所做的一样; - )

<强>更新

如果你想使用NavigationDrawer我建议使用包含内容和一个活动的多个片段,它包含片段容器和导航抽屉。所以你的应用程序的结构如下所示: 1.您创建PiggyBankActivity,其中包含fragment_container和导航抽屉。没有别的 - 没有存钱罐内容 2.您创建一个PiggyBankFragment,其中包含您要在此&#34; home&#34;上显示的所有内容。页 3.在onNavigationItemSelected中使用FragmentManager和FragmentTransactions来替换片段并显示所需的内容。

您可以参考此文档:https://developer.android.com/training/implementing-navigation/nav-drawer.html 或者这个例子 https://www.simplifiedcoding.net/android-navigation-drawer-example-using-fragments/ ; - )