Android Fragment的视图在Activity Recreation上重复

时间:2016-11-12 00:18:49

标签: android android-fragments

当一个活动产生一个片段并稍后重新创建时(例如通过旋转屏幕),与该片段相关联的视图将被复制,当片段稍后被销毁时,只有一个被销毁。

当且仅当活动直接在其onSaveInstanceState的覆盖中调用super.onSaveInstanceState或者只是不覆盖回调时,才会发生这种情况。

重现的最小代码: MainActivity.java:

package com.example.trevor.test;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.CheckBox;
import android.widget.CompoundButton;

/**
 * Created by trevor on 11/11/16.
 */

public class MainActivity extends Activity {
    MainFragment fragment = new MainFragment();
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        CheckBox checkbox = (CheckBox)findViewById(R.id.checkBox);
        checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if(b)
                {
                    getFragmentManager().beginTransaction().add(R.id.container,fragment).commit();
                }
                else
                {
                    getFragmentManager().beginTransaction().remove(fragment).commit();
                }
            }
        });
    }
}

MainFragment.java:

package com.example.trevor.test;

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

/**
 * Created by trevor on 11/11/16.
 */

public class MainFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {
        return inflater.inflate(R.layout.fragment_main,container,false);
    }
}

activity_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="match_parent"
    android:layout_height="match_parent">

    <CheckBox
        android:text="CheckBox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/checkBox" />

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/container">

    </FrameLayout>
</LinearLayout>

fragment_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="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:text="Open"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/textView" />
</LinearLayout>

的AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.trevor.test">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

    </application>

</manifest>

预期行为:选中此框会导致“打开”字样出现在下方。取消选中导致这个词消失。

实际行为:选中此框会导致“打开”字样出现在下方。如果然后旋转屏幕,单词“打开”会变暗,取消选中该框会使单词成为正常的阴影。

1 个答案:

答案 0 :(得分:2)

在重新创建Fragment时,您最初添加的Activity会自动恢复。这是Fragment的标准行为。此外,在CheckBox重新创建后,Activity已检查状态正在恢复,因此其onCheckedChanged()方法再次触发,并加载Fragment的另一个实例。如果您要在选中CheckBox的情况下继续更改方向,则会有越来越多的Fragment实例继续堆积。在添加Fragment实例之前,您需要检查Fragment实例是否已存在。

由于OnCheckedChangeListener会自动重新添加,因此在FragmentManager中添加和删除hide()将会非常麻烦,因为您首先需要检查它是否为&#39} ; s附加到show(),然后确定它是否显示。在确保实例化并添加之后,根据需要fragment = (MainFragment) getFragmentManager().findFragmentById(R.id.container); checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean b) { if(b) { if(fragment == null) { fragment = new MainFragment(); getFragmentManager().beginTransaction().add(R.id.container, fragment).commit(); } else { getFragmentManager().beginTransaction().show(fragment).commit(); } } else { if (fragment != null) { getFragmentManager().beginTransaction().hide(fragment).commit(); } } } }); MainFragment可能会更简单。

例如:

MainFragment fragment;

然后,您可以从<?php $json_string = file_get_contents('https://www.instagram.com/testuser/?__a=1'); $parsed_json = json_decode($json_string, true); print_r($parsed_json{'user'}{'profile_pic_url'}); ?> 的声明中删除初始化。

https://scontent-frt3-1.cdninstagram.com/t51.2885-19/11906329_960233084022564_1448528159_a.jpg