我正在使用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();
}