web-dev-qa-db-fra.com

Appel de DialogFragment à partir de Fragment (pas FragmentActivity)?

Mon problème est le suivant: ce fragment.

Mais il semble que vous ne pouvez pas appeler un DialogFragment directement à partir d'un fragment.

Est-il possible d'obtenir un type de "rappel" sur FragmentActivity pour que celui-ci affiche le DialogFragment sur le fragment.

Ou simplement un "pépin" pour l'appeler directement depuis le fragment.

Si c'est le cas, connaissez-vous un bon tutoriel à ce sujet?

Meilleures salutations,

Elie Page

13
Elie Page

Lorsque vous créez une nouvelle Dialog, vous pouvez simplement l'appeler en utilisant cette méthode (très) simple à partir d'une Fragment.

DialogFragment dialog = DialogFragment.instantiate(getActivity(), "Hello world");
dialog.show(getFragmentManager(), "dialog");

Si vous souhaitez utiliser votre propre dialogue, veuillez utiliser ce type de code.

public class MyDialogFragment extends DialogFragment
{
    //private View pic;

    public MyDialogFragment()
    {
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState)
    {
        View view = getActivity().getLayoutInflater().inflate(R.layout.fragment_my_dialog, new LinearLayout(getActivity()), false);

        // Retrieve layout elements
        TextView title = (TextView) view.findViewById(R.id.text_title);

        // Set values
        title.setText("Not perfect yet");

        // Build dialog
        Dialog builder = new Dialog(getActivity());
        builder.requestWindowFeature(Window.FEATURE_NO_TITLE);
        builder.getWindow().setBackgroundDrawable(new ColorDrawable(Android.graphics.Color.TRANSPARENT));
        builder.setContentView(view);
        return builder;
    }
}
14
Manitoba

Vérifiez les déclarations d'importation . Si nous utilisons

ExampleDialogFragment dialog = new ExampleDialogFragment ();
dialog .show(getFragmentManager(), "example");

Alors assurez-vous d'importer

import Android.app.DialogFragment;
import Android.app.Fragment;

pas de la bibliothèque de support.

import Android.support.v4.app.DialogFragment;
import Android.support.v4.app.Fragment;
7
Amit

cela vous aidera si vous devez afficher une boîte de dialogue de fragment à l'intérieur d'un fragment

Dialogfragment

public class DialogBoxFragment extends DialogFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
    View rootView = inflater.inflate(R.layout.dialog_fragment, container, false);
    getDialog().setTitle("simple dialog");
    return rootView;
}
}

montrant maintenant le dialogue de fragment dans un fragment

DialogFragment dialogFragment = new DialogFragment ();
                            dialogFragment.show(getActivity().getFragmentManager(),"simple dialog");

4
PradeepNama

Pour moi, c'était le suivant: https://stackoverflow.com/a/25056160/2413303

Les parties les plus importantes sont que vous devez avoir une Callback pour votre fragment de dialogue:

public class MyFragment extends Fragment implements MyDialog.Callback

Quel genre de travail fonctionne comme ça

public class MyDialog extends DialogFragment implements View.OnClickListener {

public static interface Callback
{
    public void accept();
    public void decline();
    public void cancel();
}

Vous faites que l’activité montre la boîte de dialogue pour vous à partir du fragment:

    MyDialog dialog = new MyDialog();
    dialog.setTargetFragment(this, 1); //request code
    activity_showDialog.showDialog(dialog);

showDialog() était pour moi la méthode suivante:

@Override
public void showDialog(DialogFragment dialogFragment)
{
    FragmentManager fragmentManager = getSupportFragmentManager();
    dialogFragment.show(fragmentManager, "dialog");
}

Et vous rappelez sur votre fragment cible:

@Override
public void onClick(View v)
{
    Callback callback = null;
    try
    {
        callback = (Callback) getTargetFragment();
    }
    catch (ClassCastException e)
    {
        Log.e(this.getClass().getSimpleName(), "Callback of this class must be implemented by target fragment!", e);
        throw e;
    }

    if (callback != null)
    {
        if (v == acceptButton)
        {   
            callback.accept();
            this.dismiss();
        }
        else if (...) {...}
    }
    else
    {
        Log.e(this.getClass().getSimpleName(), "Callback was null.");
    }
}
1
EpicPandaForce

J'ai eu le même problème Résolu par import 

import Android.support.v4.app.ListFragment;

au lieu de

import Android.app.ListFragment;
1
Khalid

Essayez ce cours simple que j'ai fait dans un projet myown:

        public class UIDialogMessage extends DialogFragment {

    public static UIDialogMessage newInstance(int aTitleID, int aMessageID) {
        return newInstance(aTitleID, aMessageID, true);
    }

    public static UIDialogMessage newInstance(int aTitleID, int aMessageID, boolean aDoIt) {
        UIDialogMessage frag = new UIDialogMessage();
        Bundle args = new Bundle();
        args.putInt("titleID", aTitleID);
        args.putInt("messageID", aMessageID);
        args.putBoolean("keyBoolDoSomething", aDoIt);
        frag.setArguments(args);
        return frag;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        int mTitleID = getArguments().getInt("titleID");
        int mMessageID = getArguments().getInt("messageID");
        final boolean mDoIt= getArguments().getBoolean("keyBoolDoSomething", true);

        return new AlertDialog.Builder(getActivity())
                .setTitle(mTitleID)
                .setMessage(mMessageID)
                .setPositiveButton(getResources().getString(R.string.dialog_button_gotcha),
                        new DialogInterface.OnClickListener() {

                            public void onClick(DialogInterface dialog, int whichButton) {
                                dialog.dismiss();
                                if (mDoIt)
                                    doIt();
                            }
                        })
                .create();
    }

    private void doIt() {
        ...
    }
}

et vous pouvez appeler depuis un fragment comme indiqué ci-dessous:

showDialog(R.string.dialog_title, R.string.dialog_message, false);

private void showDialog(int aTitleID, int aMessageID, boolean aDoIt) {
        DialogFragment uiDialogMessage = UIDialogMessage.newInstance(aTitleID, aMessageID, aDoIt);
        uiDialogMessage.show(getFragmentManager(), "dialog");
    }
0
Ciro Rizzo