編集: いくつかの実験の後、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>