我正在使用带有 FragmentStatePagedAdapter 的选项卡。下面的代码来自onOptionsItemSelected(MenuItem item)
方法:
case R.id.menu_help:
System.out.println("Pressin' da help button!");
FragmentManager mananger = getSupportFragmentManager();
android.support.v4.app.FragmentTransaction trans = mananger.beginTransaction();
trans.replace(android.R.id.content, new HelpFragment());
trans.addToBackStack(null);
trans.commit();
break;
android.R.id.content
但是,只会替换操作栏下方的视图(并将其覆盖在选项卡片段上)。有没有一种简单的方法可以用一个片段替换整个屏幕(不应该有一些其他的系统资源吗?)而不必为此创建一个新的活动?或者一项新活动实际上会更好吗?
在此先感谢您的帮助
容器布局(从 MainActivity 启动时开始):
<android.support.v4.view.ViewPager
android:id="@+id/masterViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
我猜这是HelpFragment的类:
public class HelpFragment extends Fragment {
private View view;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle states) {
view = inflater.inflate(R.layout.layout_help_screen, container, false);
return view;
}
}
和片段 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/nothing" />
</LinearLayout>