1

我决定从多个活动切换到一个在片段之间切换的活动,但是应用程序现在崩溃了。

这是我将片段添加到的活动

公共类 MainActivity 扩展 SherlockFragmentActivity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    MyFragment fragment = new MyFragment();

    fragment.setArguments(getIntent().getExtras());

    getSupportFragmentManager().beginTransaction()
    .add(R.id.fragment_container, fragment).commit();

}

这是它的观察者的片段,并且具有功能,但为了节省空间,我只展示了创作

public class MyFragment  extends SherlockFragment implements Observer{

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
        Bundle savedInstanceState) {

        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.my_fragment, container, false);
    }

继承人 my_fragment.xml

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

... HAS SOME TEXT VIEWS HERE!
</RelativeLayout>

我得到的崩溃是

02-15 16:17:41.079: E/AndroidRuntime(18668): FATAL EXCEPTION: main
02-15 16:17:41.079: E/AndroidRuntime(18668): java.lang.RuntimeException: 
Unable to start activity ComponentInfo{com.example.myapp/com.example.myapp.MainActivity}: 
java.lang.IllegalArgumentException: 
No view found for id 0x7f040036 for fragment MyFragmentt{41a05910 #0 id=0x7f040036}

有谁可以帮我离开这里吗?我真的无法弄清楚是什么原因造成的。我知道如果我在主要活动(这篇文章的顶部代码块)中注释掉 getSupportFragmentManager() 它将运行,只是不会在我的片段中绘制任何内容。

更新

我不知道该放在哪里的 frame_container

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
4

1 回答 1

0

因此,您可以Fragments在应用程序中使用的方式有两种。第一种方法是,如果您在 xml 文件中声明片段,如下所示:

<fragment android:name="com.example.news.ArticleReaderFragment"
        android:id="@+id/viewer"
        android:layout_weight="2"
        android:layout_width="0dp"
        android:layout_height="match_parent" />

第二种方法是,如果您将 Fragments 动态添加/替换到您的容器中,在大多数示例中是FrameLayout. 您可以这样做:

在你的主要FragmentActivity

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.myFragmentContainer);
}

在你的 xmlmyFragmentContainer.xml中是你放置你的地方fragment_container,它看起来像:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/fragment_container"
     android:layout_width="match_parent"
     android:layout_height="match_parent" />

你正在添加和替换你的Fragments这样的:

    if (findViewById(R.id.fragment_container) != null) {

        if (savedInstanceState != null) {
            return;
        }

        // Create an instance of ExampleFragment
        HeadlinesFragment firstFragment = new HeadlinesFragment();
        // if there are any extras
        firstFragment.setArguments(getIntent().getExtras());

        // Add the fragment to the 'fragment_container' FrameLayout
        getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container, firstFragment).commit();
    }

对于您要展示的下一个片段,只需执行以下操作:

getSupportFragmentManager().beginTransaction()
                    .replace(R.id.fragment_container, secondFragment).commit();
于 2013-02-15T16:53:41.993 回答