web-dev-qa-db-fra.com

Comment transformer la largeur de DialogFragment en Fill_Parent

Bonjour, je travaille sur une application Android où j'utilise DialogFragment pour afficher le dialogue, mais sa largeur est très petite. Comment puis-je faire cette largeur à fill_parent à elle?

public class AddNoteDialogFragment extends DialogFragment {

    public AddNoteDialogFragment() {
        // Empty constructor required for DialogFragment
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        getDialog().setTitle(getString(R.string.app_name));
        View view = inflater.inflate(R.layout.fragment_add_note_dialog,
                container);

        return view;
    }


    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        Dialog dialog = super.onCreateDialog(savedInstanceState);

        // request a window without the title
        dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);

        return dialog;
    }
}

fragment_add_note_dialog.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:background="@Android:color/white"
    Android:orientation="vertical"
    Android:paddingBottom="@dimen/activity_vertical_margin"
    Android:paddingLeft="@dimen/activity_horizontal_margin"
    Android:paddingRight="@dimen/activity_horizontal_margin"
    Android:paddingTop="@dimen/activity_vertical_margin" >

    <EditText
        Android:id="@+id/addNoteEditText"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:gravity="top"
        Android:hint="@string/clock_enter_add_note"
        Android:imeOptions="actionDone"
        Android:inputType="textCapSentences|textMultiLine"
        Android:lines="5" />

    <Button
        Android:id="@+id/submit"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_marginTop="10dp"
        Android:background="@drawable/login_button"
        Android:text="@string/submit_button"
        Android:textColor="@Android:color/white" />

</LinearLayout>

enter image description here

Merci d'avance.

66
N Sharma

Voici la solution que j'ai trouvée pour gérer ce problème:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog dialog = super.onCreateDialog(savedInstanceState);    
    dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);

    return dialog;
}

@Override
public void onStart() {
    super.onStart();

    Dialog dialog = getDialog();
    if (dialog != null) {
       dialog.getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
       dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    }
}

Modifier: 

Vous pouvez utiliser le code ci-dessous dans la méthode onCrateView de Fragment avant de renvoyer la vue gonflée.

getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
getDialog().getWindow().setBackgroundDrawable(new ColorDrawable(Android.graphics.Color.TRANSPARENT));
114
savepopulation

Avez-vous essayé d'utiliser la réponse d'Elvis de Comment créer une boîte de dialogue d'alerte remplissant 90% de la taille de l'écran ?

C'est le suivant:

dialog.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);

Mettre à jour:

Le code ci-dessus doit être ajouté dans la méthode onStart() de la DialogFragment.

LayoutParams.FILL_PARENT est obsolète. Utilisez plutôt LayoutParams.MATCH_PARENT.

60
EpicPandaForce

Cela a fonctionné pour moi

Créez votre style personnalisé:

   <style name="DialogStyle" parent="Base.Theme.AppCompat.Dialog">
    <item name="Android:windowMinWidthMajor">97%</item>
    <item name="Android:windowMinWidthMinor">97%</item>
   </style>

Utilisez ce style dans votre dialogue

public class MessageDialog extends DialogFragment {

@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(DialogFragment.STYLE_NO_TITLE, R.style.DialogStyle);
}

// your code 
}
35
Kishan Vaghela

Pour moi, cela a fonctionné lorsque j'ai remplacé le parent LinearLayout de la présentation gonflée dans onCreateView par RelativeLayout. Aucun autre changement de code requis.

17
AA_PV
    <!-- A blank view to force the layout to be full-width -->
    <View
        Android:layout_width="wrap_content"
        Android:layout_height="1dp"
        Android:layout_gravity="fill_horizontal" />

dans le haut de ma boîte de dialogue a fait l'affaire.

17
RJ M

Dans mon cas, j'ai également utilisé l'approche suivante:

    @Override
    public void onStart() {
        super.onStart();
        getDialog().getWindow().setLayout(LayoutParams.MATCH_PARENT, (int) getResources().getDimension(R.dimen.dialog_height));
    }
}

Mais il y avait encore de petits écarts entre les bords gauche et droit de la boîte de dialogue et les bords de l’écran de certains périphériques Lollipop + (par exemple, Nexus 9).

Ce n’était pas évident, mais j’ai finalement compris que pour le rendre sur toute la largeur sur tous les appareils et plates-formes le fond de la fenêtre devrait être spécifié dans styles.xml comme suit:

<style name="Dialog.NoTitle" parent="Theme.AppCompat.Dialog">
    <item name="Android:windowNoTitle">true</item>
    <item name="Android:padding">0dp</item>
    <item name="Android:windowBackground">@color/window_bg</item>
</style>

Et bien sûr, ce style doit être utilisé lors de la création du dialogue, comme suit:

    public static DialogFragment createNoTitleDlg() {
        DialogFragment frag = new Some_Dialog_Frag();
        frag.setStyle(DialogFragment.STYLE_NO_TITLE, R.style.Dialog_NoTitle);
        return frag;
}
10
goRGon
public class FullWidthDialogFragment extends AppCompatDialogFragment {
    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setStyle(DialogFragment.STYLE_NORMAL, R.style.Theme_AppCompat_Light_Dialog_Alert);
    }
}

et si vous voulez beaucoup plus de flexibilité, vous pouvez étendre AppCompat_Dialog_Alert et des attributs personnalisés.

10
Mehrdad Faraji

Une autre solution qui fonctionne pour moi sans effets secondaires était:

Dans votre classe qui étend DialogFragment:

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

    setStyle(DialogFragment.STYLE_NO_TITLE, R.style.DialogStyle);
}

Dans tes styles:

<style name="DialogStyle" parent="ThemeOverlay.AppCompat.Dialog.Alert"></style>
2
Josiel Novaes

Je veux clarifier ceci. Les deux manières sont bonnes, mais avec DialogFragment différent .

Utiliser Android.app.DialogFragment

@Override
public void onStart()
{
    super.onStart();
    Dialog dialog = getDialog();
    if (dialog != null)
    {
        int width = ViewGroup.LayoutParams.MATCH_PARENT;
        int height = ViewGroup.LayoutParams.MATCH_PARENT;
        dialog.getWindow().setLayout(width, height);
    }
}

Utiliser Android.support.v4.app.DialogFragment

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(DialogFragment.STYLE_NORMAL, Android.R.style.Theme_Black_NoTitleBar_Fullscreen);
}
2
Khemraj

Créez un style personnalisé dans votre fichier style.xml. Copiez simplement ce code dans votre fichier style.xml

<style name="CustomDialog" parent="@Android:style/Theme.Holo.Light" >
    <item name="Android:windowBackground">@null</item>
    <item name="Android:windowIsFloating">true</item>
</style>

Ensuite, dans la méthode createDialog de votre DialogFragment, créez l'objet dialog par le code

 dialog = new Dialog(getActivity(), R.style.CustomDialog);

Cela fonctionne pour moi et j'espère que cela vous aidera aussi

1
emilpmp

utiliser ceci dans la méthode onCreateView de DialogFragment 

    Display display = getActivity().getWindowManager().getDefaultDisplay();
    int width = display.getWidth();
    int px = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, **220**, getResources().getDisplayMetrics());
    getDialog().getWindow().setLayout(width,px);

220 est la hauteur du fragment de dialogue, changez-le si vous le souhaitez

0
Saeed-rz

dans la racine de votre présentation, définissez Android: minWidth sur une valeur très grande

<LinearLayout
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:orientation="vertical"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:minWidth="9999999dp">

   ...

</LinearLayout>
0
heeleeaz

Sur la base d’autres solutions, j’ai créé la mienne.

<style name="AppTheme.Dialog.Custom" parent="Theme.AppCompat.Light.Dialog.Alert">
    <item name="Android:windowNoTitle">true</item>
    <item name="Android:windowMinWidthMajor">100%</item>
    <item name="Android:windowMinWidthMinor">100%</item>
</style>
abstract class BaseDialogFragment : DialogFragment() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setStyle(DialogFragment.STYLE_NO_TITLE, R.style.AppTheme_Dialog_Custom)
    }
}

User AlertDialog.Builder dans votre DialogFragment. Ajoutez-le dans la méthode onCreateDialog comme ceci. Et dans onCreateView ne faites rien.

public Dialog onCreateDialog(Bundle savedInstanceState)
{

    AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
    View view = LayoutInflater.from(getContext()).inflate(R.layout.gf_confirm_order_timeout_dialog, null);
    final Bundle args = getArguments();
    String message = args.getString(GfConstant.EXTRA_DATA);
    TextView txtMessage = (TextView) view.findViewById(R.id.txt_message);
    txtMessage.setText(message);

    view.findViewById(R.id.btn_confirm).setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            if (mListener != null)
            {
                mListener.onDialogConfirmOK();
            }
        }
    });
    builder.setView(view);
    Dialog dialog = builder.create();
    dialog.setCanceledOnTouchOutside(false);
    dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
    return dialog;
}
0
Son Nguyen Thanh

C'est comment j'ai résolu quand j'ai fait face à ce problème. Essaye ça.

dans votre DialogFragment onActivityCreated, ajoutez ce code en fonction de vos besoins ....

 @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        myview=inflater.inflate(R.layout.fragment_insurance_detail, container, false);
        intitviews();
        return myview;
    }
    @Override
    public void onActivityCreated(Bundle arg0) {
        super.onActivityCreated(arg0);
        getDialog().getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
        getDialog().getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
        getDialog().getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        getDialog().getWindow().setGravity(Gravity.CENTER);
    }
0
Sharon Joshi