DialogFragment is a fragment that displays a dialog window, floating on top of its activity's window.
I have an android activity that implements a custom dialog.The application is running ok but the dialog is too …
android android-dialogfragment customdialogI recently used android.support.design.widget.BottomSheetDialogFragment. I wanted to do something which is similar to the Google contact …
android android-dialogfragment bottom-sheetI'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-dialogfragmentWhich 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-popupwindowAfter 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 fragmentmanagerWhen should I use getFragmentManager() when showing DialogFragments, and when should I use getSupportFragmentManager()? Currently, I am showing my DialogFragments …
android android-dialogfragmentI 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-marshmallowI 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-dialogfragmentI 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-dialogfragmentHow can I call finish() and other non static methods from a DialogFragment in the activity that created it? I …
android android-dialogfragment