gpt4 book ai didi

android - 删除和添加 Activity 到后台堆栈

转载 作者:IT老高 更新时间:2023-10-28 23:08:40 29 4
gpt4 key购买 nike

Navigation Drawer 的“交叉导航到较低层级后的系统返回”部分中,他们说:

If the user navigates to a lower hierarchy screen from the navigation drawer and the screen has a direct parent, then the Back stack is reset and Back points to the target screen’s parent. This Back behavior is the same as when a user navigates into an app from a notification.

resetting the back stack

我知道可以通过使用 FLAG_ACTIVITY_CLEAR_TOP 和 FLAG_ACTIVITY_NEW_TASK 启动 Activity 来重置后退堆栈,但这在这里似乎不可用,因为它不会为较低的 1.1.1 创建后退堆栈。

知道如何在启动 Lower 1.1.1 时从堆栈中删除 TopView2 并同时添加 TopView1 -> Lower 1.1 back stack 吗?考虑到抽屉导航文档中提到了这一点,我期待一个简单的解决方案。

最佳答案

编辑合成版:

1) 在 list 文件中声明应用的层次导航结构。

2)您应用的根 Activity 应该在您的应用层次结构中的 TopViews 之间执行 View 切换。*

3) 层次结构中较低的 Activity 应执行“选择性向上”导航。

*重要提示:当事务用于水平导航时,例如切换选项卡或抽屉导航顶 View 时,不应将事务添加到后台堆栈。


完整说明:

您应该避免在抽屉导航等新导航模式中使用 Intent Flags,原因如下:

  • Intent 标志并不是真正的 API。
  • 某些标志只能在精确组合中使用。
  • 许多标志与大多数第 3 方应用无关。
  • 与 Activity 重叠/冲突 launchMode .
  • 令人困惑的文档。
  • 实现可能是一个反复试验的过程。

改为选择新的 Navigation API:

  • Jelly Bean 及更高版本的原生向上导航。
  • 基于为每个 <activity> 指定的分层元数据在您的 list 中。
  • 支持库通过 NavUtils 为早期的 android 版本提供等效功能.
  • TaskStackBuilder为跨任务导航提供额外的实用程序。

所以要回答你的问题,大致思路是:

1) 您需要在 list 文件中声明每个 Activity 的逻辑父级,使用 android:parentActivityName属性(和相应的 <meta-data> 元素)如:

<application ... >
...
<!-- The main/home activity (it has no parent activity) -->
<activity
android:name="com.example.myapp.RootDrawerActivity" ...>
...
</activity>
<!-- A child of the root activity -->
<activity
android:name="com.example.myapp.Lower11 "
android:label="@string/lower11"
android:parentActivityName="com.example.myapp.RootDrawerActivity" >
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.myapp.RootDrawerActivity" />
</activity>
<activity
android:name="com.example.myapp.Lower111 "
android:label="@string/lower111"
android:parentActivityName="com.example.myapp.Lower11" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.myapp.Lower11" />
</activity>
</application>

2) 在您的根 Activity 中,抽屉项目选择应通过替换 Activity 的当前 fragment 内容来启动“ View 切换”操作。

View 切换遵循与列表或标签导航相同的基本策略,因为 View 切换不会创建导航历史记录。此模式应仅在任务的根 Activity 中使用,为导航层次结构更下方的 Activity (在您的情况下为下 1.1 和下 1.1.1)保留某种形式的向上导航 Activity 。这里重要的是,您不需要从堆栈中删除 TopView2,而是在将 View (或 fragment ID)的位置作为额外传递之前执行注释的 View 切换。

在您的根 Activity 中执行以下操作:

@Override
protected void onDrawerItemSelected(int position) {

// Update the main content by replacing fragments
CategoryFragment fragment = new CategoryFragment();
Bundle args = new Bundle();
args.putInt(RootDrawerActivity.ARG_SORT, position);
fragment.setArguments(args);

FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.content_frame, fragment).commit();

// Update selected item and title, then close the drawer
setDrawerItemChecked(position, true);
setTitle(getResources().getStringArray(R.array.drawer_array)[position]);
closeDrawer();

}

3)然后在层次结构的较低层(即Lower1.1)您应该执行“选择性向上”导航,在流程中重新创建任务堆栈

Selective Up 允许用户随意跳过应用的导航层次结构。应用程序应该将其视为处理来自不同任务的向上导航,替换当前任务堆栈(这就是您想要的!)使用 TaskStackBuilder 或类似的。这是抽屉导航的唯一形式,应该在任务的根 Activity 之外使用。

@Override
protected void onDrawerItemSelected(int position) {

TaskStackBuilder.create(this)
.addParentStack(RootDrawerActivity.class)
.addNextIntent(new Intent(this, RootDrawerActivity.class)
.putExtra(RootDrawerActivity.ARG_SORT, position))
.startActivities();

}

引用:

http://developer.android.com/training/implementing-navigation/ancestral.html https://speakerdeck.com/jgilfelt/this-way-up-implementing-effective-navigation-on-android

关于android - 删除和添加 Activity 到后台堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20241544/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com