アクティビティがフラグメントを生成して後で再作成されると、そのフラグメントに関連付けられたビューは複製され、フラグメントが後で破棄されると破棄されます。Androidレクリエーションのビューはアクティビティレクリエーションで複製されます
これは、アクティビティが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>
期待される動作:ボックスをチェックすると、単語 "オープン" は、以下の表示されるようになります。チェックを外すと、単語が消えます。
実際の動作:ボックスをチェックすると、下に「開く」という単語が表示されます。画面が回転すると、「開く」という単語が暗くなり、ボックスのチェックを外すと、その単語が通常の陰になります。