明确堆栈中/历史navigationdrawer项目选择(clear backstack / his

2019-10-19 08:59发布

在MainActivity我有一个看起来像这样的NavigationDrawer:

private void displayView(int position) { 

    ListFragment listFragment = null;

    switch (position) {
    case 0:
        listFragment = new AlbumFragment();
        break;
    case 1:
        listFragment = new TrackFragment();
        break;
    default:
        break;
    }

    if (listFragment != null) {

        FragmentManager fm = getSupportFragmentManager();
        fm.beginTransaction().replace(R.id.frame_container, listFragment).commit();

        // update selected item and title, then close the drawer
        mDrawerList.setItemChecked(position, true);
        mDrawerList.setSelection(position);
        setTitle(navMenuTitles[position]);
        mDrawerLayout.closeDrawer(mDrawerList);
    } else {
        // error in creating fragment
        Log.e("MainActivity", "Error in creating fragment");
    }
}

在我的AlbumFragment我可以通过点击listItems中切换到TrackFragment。

@Override
public void onListItemClick(ListView l, View v, int position, long id) {    
    // get album & artist of selected album
    String album = ((TextView) v.findViewById(R.id.albumTitle)).getText().toString();
    String artist = ((TextView) v.findViewById(R.id.albumArtist)).getText().toString();
    String[] albumFilter = {"albumFilter", album, artist};

    // Create new fragment and transaction
    Fragment newFragment = new TrackFragment(); 
    Bundle args = new Bundle();
    args.putStringArray("filter", albumFilter);
    newFragment.setArguments(args);     

    FragmentTransaction transaction = this.getActivity().getSupportFragmentManager().beginTransaction();

    // Replace whatever is in the fragment_container view with this fragment,
    // and add the transaction to the back stack
    transaction.replace(R.id.frame_container, newFragment);
    transaction.addToBackStack(null);
    transaction.commit();
}

现在出现以下问题:如果我按后退按钮,一切都很好,我回到了AlbumFragment。 但是如果我打开NavigationDrawer并选择Tracksfragment,然后按返回按钮我回到了AlbumFragment背后它仍然是我的TrackFragment。

进一步说明:当我选择在AlbumFragment一个相册仅从这专辑曲目被示出。 如果我从NavDrawer选择曲目显示所有曲目。

因此,基本上所有我想要的是,整个堆栈中的历史记录被当我选择从NavDrawer一个项目清理。 我已经尝试过的大部分解决类似问题的发现在这里,但没有unfortuneatley为我工作至今。

有没有人得到了一个解决这个问题?

Answer 1:

像这样使用android.support.v4.content.IntentCompat的:

Intent intent = IntentCompat.makeRestartActivityTask(new ComponentName(DrawerActivity.this, Tracksfragment.class));
startActivity(intent);


Answer 2:

您可以在意向设置下列标志,同时启动另一项活动:

    Intent intent = new Intent(this, MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
    startActivity(intent);

希望这是你所期待的。



文章来源: clear backstack / history navigationdrawer item selected