DialogFragment is a fragment that displays a dialog window, floating on top of its activity's window.
I have an Android Application that is made using Fragments I am hiding the bars at top and bottom of …
android keyboard android-dialogfragment android-immersiveI have a Fragment in my app that shows a DialogFragment. I have in the fragment a button that closes …
android android-dialogfragmentI am using a DialogFragment. I want the positive and negative buttons to remain above the keyboard when the user …
android android-dialogfragmentI'm creating an app which changes status bar color dynamically. My method in main Activity class works fine when called …
android android-fragments android-dialogfragmentI'm migrating my dialogs, currently using Activity.showDialog(DIALOG_ID);, to use the DialogFragment system as discussed in the android …
android dialog callback orientation-changes android-dialogfragmentI have a DialogFragment that is styled to full screen using setStyle(STYLE_NORMAL, R.style.Theme_App). The DialogFragment …
android android-dialogfragment android-actionbar-compat dialogfragmentI have made a github project with just the issue. You can see it / clone it / build it from here: …
android android-layout android-fragments android-dialogfragmentHere's how I called my DialogFragment: DialogSelectAccount myDiag=new DialogSelectAccount(); myDiag.show(ft,"Diag" ); Here's how (partially) my DialogFragment is …
android android-layout android-fragments android-dialogfragment android-dialogI am trying to create a custom DialogFragment, that extends over the whole width of my screen (or rather, parent …
android android-dialogfragmentI'm taking photo from dialog fragment. And also I need something like startActivityForResult(takePictureIntent, actionCode); @Override public void onActivityResult(int …
android android-dialogfragment start-activity onactivityresult