3

我正在使用带有 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>
4

1 回答 1

0

更新:如果您将 appcompat-v7 更新到修订版 19.0.0,则不再需要以下开关。或更新。请发出 59077以获取更多信息。


我怀疑您使用的设备/模拟器运行的是4.x之前的 Android 版本(Ice Cream Sandwich,API 级别 14)。我在使用片段事务时遇到了类似的覆盖问题。出现布局问题是因为与Android 4.x 相比,Android 2.x 和 3.x对内容视图的引用方式不同。请尝试从以下位置更改您的代码:

trans.replace(android.R.id.content, new HelpFragment());

到:

trans.replace(getContentViewCompat(), new HelpFragment());

...

public static int getContentViewCompat() {
    return Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH ?
               android.R.id.content : R.id.action_bar_activity_content;
}

更多背景信息可以在Shellum 的帖子中找到

于 2013-10-15T08:40:09.040 回答