0

logcat中的错误:E/FragmentManager(7158): No view found for id 0x7f05000d (com.mybiz.mygame:id/fragment_container) for fragment MainMenuFragment{4052d780 #0 id=0x7f05000d}

好的,这是应用程序的设置方式:

创建了两个变量:

private static View oGoogleGamesView ;
private static RelativeLayout oViewGroup ;

然后在 onCreate 中:

oViewGroup = new RelativeLayout ( this ) ;
setContentView ( oViewGroup ) ;

LayoutInflater inflater = (LayoutInflater)this.getSystemService ( Context.LAYOUT_INFLATER_SERVICE ) ;       
oGoogleGamesView        = inflater.inflate ( R.layout.ggmain, oViewGroup, false ) ;

然后我尝试展示片段:

// create fragments
mMainMenuFragment = new MainMenuFragment();

// listen to fragment events
mMainMenuFragment.setListener(this);

// add initial fragment (welcome fragment)
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container,
        mMainMenuFragment).commit();

在这里它崩溃并出现顶部错误。这是xml文件:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_container"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
</FrameLayout>

如何在不崩溃的情况下显示片段?

4

2 回答 2

1

您将应用视图设置为 oViewGroup:

setContentView ( oViewGroup ) ;

然后你膨胀另一个视图并让它悬空:

oGoogleGamesView        = inflater.inflate ( R.layout.ggmain, oViewGroup, false ) ;

oGoogleGamesView在您的应用程序中实际使用布局,您必须将其添加到当前视图中,然后才能引用其中包含的 ID:

oViewGroup.addView(oGoogleGamesView, LayoutParams);
于 2013-10-11T16:38:50.040 回答
1

在 onCreate 方法 setContentView(R.layout.yourLayout); 中试试这个 其中 yourLayout 是包含您在问题中提出的 frameLayout 的 xml 文件。

于 2013-10-11T05:04:34.720 回答