仮説
戻りたいポイントをマークするにaddToBackStack(tag: String): FragmentTransaction
は、 内の メソッドを使用します。このメソッドは、チェーン機能のみのインスタンスを返します。FragmentTransaction
FragmentTransaction
popBackStackImmediate(tag: String, flag: int): void
その後、 のメソッドで戻りFragmentManager
ます。タグは前に指定したものです。POP_BACK_STACK_INCLUSIVE
フラグは、マークされたトランザクションを含む定数または のいずれか0
です。
例
以下は、フラグメントが読み込まれるFrameLayout
with idを持つ次のレイアウトの例です。content_frame
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_below="@id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
以下のコードは、レイアウト要素のコンテンツを id に置き換えるときに、フラグメント クラス名でフラグメントをマークしますcontent_frame
。
public void loadFragment(final Fragment fragment) {
// create a transaction for transition here
final FragmentTransaction transaction = getSupportFragmentManager()
.beginTransaction();
// put the fragment in place
transaction.replace(R.id.content_frame, fragment);
// this is the part that will cause a fragment to be added to backstack,
// this way we can return to it at any time using this tag
transaction.addToBackStack(fragment.getClass().getName());
transaction.commit();
}
この例を完成させるために、タグをロードしたときにタグを使用して、まったく同じフラグメントに戻ることができるメソッドを作成します。
public void backToFragment(final Fragment fragment) {
// go back to something that was added to the backstack
getSupportFragmentManager().popBackStackImmediate(
fragment.getClass().getName(), 0);
// use 0 or the below constant as flag parameter
// FragmentManager.POP_BACK_STACK_INCLUSIVE);
}
これを実際に実装するときは、フラグメント パラメータに null チェックを追加することをお勧めします ;-)。