10

クラスに内部クラスDialogFragmentとして定義されています。Orientation Change では、次の例外も表示されます。Fragment

 Caused by: android.app.Fragment$InstantiationException: Unable to instantiate fragment my.package.fragments.ImportFragment$FailedImportDialog: make sure class name exists, is public, and has an empty constructor that is public
        at android.app.Fragment.instantiate(Fragment.java:585)
        at android.app.FragmentState.instantiate(Fragment.java:96)
        at android.app.FragmentManagerImpl.restoreAllState(FragmentManager.java:1682)
        at android.app.Activity.onCreate(Activity.java:861)
        at my.package.activities.ImportActivity.onCreate(ImportActivity.java:8)
        at android.app.Activity.performCreate(Activity.java:4465)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
        ... 12 more
        Caused by: java.lang.InstantiationException: can't instantiate class my.package.fragments.ImportFragment$FailedImportDialog; no empty constructor
        at java.lang.Class.newInstanceImpl(Native Method)
        at java.lang.Class.newInstance(Class.java:1319)
        at android.app.Fragment.instantiate(Fragment.java:574)

しかし、私はパブリックコンストラクターを持っています:

class FailedImportDialog extends DialogFragment {

        private EditText edtPassword;
        private Button button;

        public FailedImportDialog() { // Here it is!
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            View v = inflater.inflate(R.layout.another_password_dialog, container, false);
            edtPassword = (EditText) v.findViewById(R.id.another_password_dialog_et_password);

            getDialog().setTitle(R.string.failed_to_decrypt);

            Button button = (Button) v.findViewById(R.id.another_password_dialog_btn_ok);
            button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {

            });

            return v;

    }
}

ここにxmlがあります:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:orientation="vertical"
              android:padding="10dp">

    <TextView android:id="@+id/another_password_dialog_tv_text"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="@string/what_password_did_you_use">
    </TextView>

    <EditText android:id="@+id/another_password_dialog_et_password"
              android:layout_height="wrap_content"
              android:layout_width="match_parent"
              android:inputType="textPassword">
        <requestFocus>
        </requestFocus>
    </EditText>

    <Button android:id="@+id/another_password_dialog_btn_ok"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:text="OK">
    </Button>

</LinearLayout>

なぜこの例外が発生するのか知っていますか?ありがとうございました!

更新:クラスを別のファイルに移動すると、そのような例外はなく、すべてがスムーズに進みます。DialogFragment問題は、内部クラスの場合になぜこの例外が発生するのかということです。

4

3 に答える 3

7

setRetainInstance(true)を呼び出すと、FragmentManagerは実際のFragmentインスタンスを保存します。フラグメントを破棄して再作成する代わりに、同じフラグメントを新しいアクティビティに渡すだけです。

于 2012-09-20T10:23:44.333 に答える
5

内部クラスを静的にしてみてください。

public static class FailedImportDialog extends DialogFragment 

私はしばらくの間、これについてのより多くの説明を投稿します. それまでの間、これを試して、うまくいくかどうかお知らせください。

于 2012-07-18T18:41:07.870 に答える
0

次のように内部クラスを定義します。

public class FailedImportDialog extends DialogFragment {
....
}

公開表記あり。

なぜなら、これはあなたの LogCat が言っていることだからです:

Caused by: android.app.Fragment$InstantiationException: Unable to instantiate fragment
my.package.fragments.ImportFragment$FailedImportDialog: make sure class name exists 
is public, and has an empty constructor that is public
于 2012-07-18T18:00:36.967 に答える