An Android Fragment that displays a dialog window, floating on top of its activity's window.
I have a dialogfragment for a floating dialog which includes a special keyboard that pops up when a user presses …
android dialog dialogfragmentWhen developing an Android app, I've read that it's recommended to use DialogFragment instead of using directly an AlertDialog to …
android android-alertdialog android-dialogfragment dialogfragmentHow can I listen to a FINAL dismissal of a BottomSheetDialogFragment? I want to save user changes on the final …
android dialog android-dialogfragment dialogfragment bottom-sheetI have a DialogFragment and I set animation for enter/exit in the onActivityCreated method as below: @Override public void …
android android-animation buttonclick dialogfragmentI'm trying to create a DialogFragment that shows a dialog with a custom ListView inside. public class MultiSelectDialogCustom extends DialogFragment { …
android android-listview dialogfragmentIs it possible to use a DialogFragment when using an Activity instead of a FragmentActivity? The show() methods needs a …
android android-activity dialogfragmentI could not find proper lifecycle of android.support.v4.app.DialogFragment by searching on Google. I need this for …
android android-dialogfragment dialogfragment appcompatdialogfragmentHow can I disable OK/Cancel button of a DialogFragment when it is created using an AlertDialog ? I tried calling …
android button android-alertdialog dialogfragmentI have created a custom dialog fragment and its xml as follows: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout …
android android-fragments dialogfragmentI need to dismiss DialogFragment in onStop() of an FragmentActivity if it is showing, this is what I did if(…
android android-dialogfragment dialogfragment