1

フラグメントと構成の変更 (ローテーション) に問題があります。フラグメントのテキストをランダムに更新するボタンのある画面があります。

デバイスをローテーションするまで(構成の変更)、すべて正常に動作します。findFragmentByTagフラグメントはできますが、そのgetView()メソッドは を返しますnull。私は setRetainState(true) を使用しています:すべてのプライベートフィールドは十分に保持されています。

次のコードでは、ビュー ページャーのコンテキストにいるため、フラグメントを動的に作成しています (TestItemListFragment は ViewPager ページのフラグメントを参照し、TestItemDetailFragment は、クリックしたときにテキストを更新するフラグメントを参照します)。ボタン)。この例では、示されているコードは簡略化されていますが、詳細についてはコード内のコメントを参照してください。

何が欠けていますか?私は何を間違っていますか?(確かにそうです)

編集:複製のためのソースへのリンク:https ://bitbucket.org/bixibu/demo-nestedfragment-android

アクティビティ :

public class TestActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @Override
    protected void onResumeFragments() {
        super.onResumeFragments();

        Bundle args = new Bundle();
        TestItemListFragment frag = TestItemListFragment.newInstance();

        if (getSupportFragmentManager().findFragmentByTag("tag") == null) {
            getSupportFragmentManager().beginTransaction().add(android.R.id.content, frag, "tag").commitAllowingStateLoss();
        }
    }
}

ページフラグメント:

public class TestItemListFragment extends Fragment {


    ItemDetailFragment detailFragment = null;
    String mCurTitle = null;

    private SecureRandom random = new SecureRandom();

    public static TestItemListFragment newInstance() {
        TestItemListFragment fragment = new TestItemListFragment();
        return fragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRetainInstance(true);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        super.onCreateView(inflater, container, savedInstanceState);
        return inflater.inflate(R.layout.item_list_fragment_test, container, false);
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        /**
         * Addind random string generation while clicking on button
         * And setting this random String to the fragment
         */
        Button button = (Button) getView().findViewById(R.id.button1);
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                updateDetail(new BigInteger(130, random).toString(32));
            }
        });

        // creating new fragment
        detailFragment = ItemDetailFragment.newInstance(new Bundle());

        // in my XML I don't have any ID because I have to create as many fragment as I have Pages in my ViewPager
        // so I dynamically creates an ID
        // in order to have a different fragment for each Page
        // if I don't do that only my first Page display a fragment (or multiple ones)
        int fragmentContainerUniqId = 519618565;
        View fragmentContainer = getView().findViewById(R.id.detailFragmentContainer);
        fragmentContainer.setId(fragmentContainerUniqId);

        if (getActivity().getSupportFragmentManager().findFragmentById(fragmentContainerUniqId) == null) {
            // Add the fragment to the 'detailFragmentContainer' FrameLayout
            getActivity().getSupportFragmentManager().beginTransaction()
                    .add(fragmentContainerUniqId, detailFragment).commitAllowingStateLoss();
        }

        if (mCurTitle != null) {
            updateDetail(mCurTitle);
        }

    }

    // May also be triggered from the Activity
    public void updateDetail(String title) {
        detailFragment.setTitle(title);
    }
}

詳細フラグメント:

public class ItemDetailFragment extends Fragment {

    public static ItemDetailFragment newInstance(Bundle bundle) {
        ItemDetailFragment fragment = new ItemDetailFragment();
        fragment.setArguments(bundle);
        return fragment;
    }

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

        View view = inflater.inflate(R.layout.item_detail_fragment, container, false);
        return view;
    }

    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);

        setTitle(getArguments().getString("title"));
    }

    public void setTitle(String title) {
        if (getView() != null && title != null) {
            TextView view = (TextView) getView().findViewById(R.id.detailsText);

            view.setText(title);
        }
    }
}

XML :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="populate fragment"
        />


        <FrameLayout
            android:id="@+id/detailFragmentContainer"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="2" />


</LinearLayout>

マニフェスト :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.burnside.digital.nestedfragments"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.burnside.digital.nestedfragments.TestActivity"
            android:label="@string/title_activity_test" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

ps: 私は support-v4 lib で作業しています

ご協力ありがとうございます。投稿を更新します。不明な点があるので、お知らせください。

4

2 に答える 2