我正在使用 android 中的主/详细流模板创建一个应用程序...默认情况下,它在平板电脑的 2 窗格活动中显示数据,在手机中显示带有导航的单窗格......我想添加“上一个”和“下一步”按钮在详细活动中(用于手机),以便导航变得更容易,(每次返回 listActivity 非常麻烦.....)......但我无法做到这一点...... ..请帮助:(。这是ItemDetailActivity的主要代码
if (savedInstanceState == null) {
Bundle arguments = new Bundle();
arguments.putString(ItemDetailFragment.ARG_ITEM_ID,
getIntent().getStringExtra(ItemDetailFragment.ARG_ITEM_ID));
ItemDetailFragment fragment = new ItemDetailFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction()
.add(R.id.item_detail_container, fragment)
.commit();
}