5

編集: いくつかの実験の後、xml レイアウトに最初のフラグメントを追加しないと、期待どおりに動作するように見えます。私は現在、アクティビティのソースコードでそれを行っています。これが私が期待されていた方法だと思いますか?

http://developer.android.com/guide/components/fragments.html#Creatingによると、フラグメントが削除されてから追加された場合、 onCreateView() を呼び出す必要があります。

また、getView() が null を返すこともわかります。onDestroyView() が呼び出されますが、戻るを押しても最初のフラグメントのインターフェイスが表示されます

ここに私のサンプルコードの結果があります:

--launch app
I/System.out( 3765): ==== FRAGMENT1.ONCREATE
I/System.out( 3765): ==== FRAGMENT1.ONCREATEVIEW
I/System.out( 3765): ==== FRAGMENT1.ONACTIVITYCREATED (FRAGMENT1.getView = android.support.v4.app.NoSaveStateFrameLayout@41301268

--second fragment
I/System.out( 3765): ==== FRAGMENT2.ONCREATE
I/System.out( 3765): ==== FRAGMENT2.ONCREATEVIEW
I/System.out( 3765): ==== FRAGMENT2.ONACTIVITYCREATED

--back is pressed : getView() == null and onCreateView is not called
I/System.out( 3765): ==== FRAGMENT1.ONACTIVITYCREATED (FRAGMENT1.getView = null

何か間違ったことをしている場合に備えて、問題を再現するための基本的なコードを次に示します。

私の2つのフラグメントクラス:

package com.test.testbackfragment;

import android.support.v4.app.Fragment;
import android.view.ViewGroup;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;

public class Fragment1 extends Fragment {
    @Override
    public void onCreate(Bundle savedInstanceState)  {
        System.out.println("==== FRAGMENT1.ONCREATE");
        super.onCreate(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {    
        System.out.println("==== FRAGMENT1.ONCREATEVIEW");
        View v = inflater.inflate(R.layout.fragment1, container, false);

        v.findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    getActivity().getSupportFragmentManager().beginTransaction()
                        .remove(Fragment1.this)
                        .add(R.id.fragment, new Fragment2())
                        .addToBackStack(null)
                        .commit();
                }
            });
        return v;
    }        

    @Override
    public void onActivityCreated (Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        System.out.println("==== FRAGMENT1.ONACTIVITYCREATED (FRAGMENT1.getView = "+getView());
    }    
}

package com.test.testbackfragment;

import android.support.v4.app.Fragment;
import android.view.ViewGroup;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;

public class Fragment2 extends Fragment {
    @Override
    public void onCreate(Bundle savedInstanceState)  {
        System.out.println("==== FRAGMENT2.ONCREATE");
        super.onCreate(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {    
        System.out.println("==== FRAGMENT2.ONCREATEVIEW");
        View v = inflater.inflate(R.layout.fragment2, container, false);
        return v;
    }        

    @Override
    public void onActivityCreated (Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        System.out.println("==== FRAGMENT2.ONACTIVITYCREATED");
    }    
}

主な活動はとてもシンプルです

package com.test.testbackfragment;

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;

public class MainActivity extends FragmentActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

ここに3つのレイアウトがあります:main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    <fragment android:name="com.test.testbackfragment.Fragment1"
            android:id="@+id/fragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
</LinearLayout>

fragment1.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:background="#0000FF">
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textSize="20dip"
            android:text="THIS IS FRAGMENT1" />

    <Button
            android:id="@+id/button"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:textSize="20dip"
            android:text="FRAGMENT2"/>
</LinearLayout>

fragment2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:background="#00FF00">
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textSize="20dip"
            android:text="THIS IS FRAGMENT2" />
</LinearLayout>
4

2 に答える 2

1

システムは、この main.xml レイアウトを作成するときに、レイアウトで指定されたフラグメントをインスタンス化し、onCreateView() メソッドを呼び出して、各フラグメントのレイアウトを取得します。後で、同じフラグメントのインスタンスを使用します。そのため、OnCreateView を再度呼び出すことはありません。

再度作成する場合は、Activity から FragmentTransaction のインスタンスを取得し、必要に応じて実装します。

FragmentManager fragmentManager = getFragmentManager()
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction .replace(R.id.fragment, newFragment);
// Commit the transaction
transaction.commit();
于 2014-09-10T05:17:50.887 に答える
0

beforeイベントFragmentManagerを使用して 、スタックからフラグメントを削除してみてください。FragmentTransaction.remove(your fragment)BackPress

または を使用しFragmentTransaction.replace()て、新しいフラグメントをロードします。

于 2014-11-15T07:49:04.553 に答える