Top "Android-dialogfragment" questions

DialogFragment is a fragment that displays a dialog window, floating on top of its activity's window.

Custom dialog too small

I have an android activity that implements a custom dialog.The application is running ok but the dialog is too …

android android-dialogfragment customdialog
Make bottomSheetDialog full screen over status bar

I recently used android.support.design.widget.BottomSheetDialogFragment. I wanted to do something which is similar to the Google contact …

android android-dialogfragment bottom-sheet
DialogFragment not resizing when keyboard shown

I'm trying to use a SherlockDialogFragment to ask some input from the user. Everything works fine on my phone (Galaxy …

android actionbarsherlock android-view android-dialogfragment
How to achieve custom dialog at the bottom of the screen in Android

Which component do I choose to achieve custom dialog at the bottom as shown in the below image? Shall I …

android android-alertdialog android-dialogfragment android-popupwindow
Fragment must be a public static class to be properly recreated from instance state

After updating to the latest support repository, compile 'com.android.support:appcompat-v7:24.2.0' compile 'com.android.support:design:24.2.0' compile …

android android-fragments android-support-library android-dialogfragment fragmentmanager
Using getFragmentManager() vs getSupportFragmentManager()?

When should I use getFragmentManager() when showing DialogFragments, and when should I use getSupportFragmentManager()? Currently, I am showing my DialogFragments …

android android-dialogfragment
Android 6.0 Dialog text doesn't appear

I updated my phone to Android 6.0 and I have these 2 problems with dialogs: 1)The title is shown but the messages …

android android-alertdialog android-dialogfragment android-dialog android-6.0-marshmallow
Proper way of dismissing DialogFragment while application is in background

I started using DialogFragment, because they are working nicely through orientation changes, and stuff. But there is nasty problem I …

android android-fragments android-dialog android-dialogfragment
Android DialogFragment onViewCreated not called

I am using android compatibility library (v4 revision 8). In the custom DialogFragment the overrided method onViewCreated is not getting called.…

android android-support-library android-dialogfragment
Managing activity from DialogFragment

How can I call finish() and other non static methods from a DialogFragment in the activity that created it? I …

android android-dialogfragment