DialogFragment is a fragment that displays a dialog window, floating on top of its activity's window
0
votes
0answers
13 views
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 Nexus, 4.2), but on a smaller phone (emulator 2.3.3), when the keyboard shows up, ...
0
votes
2answers
27 views
Showing a DialogFragment in a Fragment
I'm currently working on converting an Activity into a Fragment. The activity contains a Edittext that when clicked shows a DialogFragmment for picking a date. In the Activity I would simply call this ...
0
votes
2answers
24 views
Android - DialogFragment is shown from a Fragment. How to show Toast from Fragment when DialogFragment is dismissed?
As mentioned in the question..
I have a Fragment from which I create and show a DialogFragment along with setting the targetFragment to this, the current Fragment.
DialogFragment_Progress ...
0
votes
2answers
22 views
How to safely dismiss DialogFragment in onstop()?
I need to dismiss DialogFragment in onStop() of an FragmentActivity if it is showing, this is what I did
if(mAlertDlg != null && mAlertDlg.getDialog() != null)
mAlertDlg.dismiss();
...
0
votes
0answers
18 views
How to implement a flexible modal-like notification system in Android?
I am working on an Android application that consists of several screens, which in the former version have been Activities and are now implemented as Fragments. I want to provide a flexible ...
0
votes
0answers
47 views
How do I display a full-width DialogFragment?
I am trying to create a custom DialogFragment, that extends over the whole width of my screen (or rather, parent fragment). Although I can make the borders of the DialogFragment transparent, there ...
1
vote
1answer
46 views
Calling a DialogFragment from a ListActivity
I have an android application with a main activity extending a listactivity.
public class Main_activity extends ListActivity {...}
Out of the options menu, I want to send a part of the items via ...
0
votes
0answers
36 views
Dimissing DialogFragment but objects are still in memory
I have an Activity and there I have a MenuItem, which when clicked, initializes the following DialogFragment:
MapDialogFragment df = new MapDialogFragment();
Bundle bundle = new Bundle();
...
1
vote
2answers
47 views
Create Fully Custom AlertDialog in DialogFragment
Below is my FragmentActivity and DialogFragment. I try to create a custom AlertDialog. I have partially achieve that as in the image below. How can I get rid of those white areas around my custom ...
0
votes
3answers
50 views
Android Creating a Custom AlertDialog in DialogFragment
I am trying to create an AlertDialog which contains a Next and a Close button and a checkbox for "don't show it again". I use support library for DialogFragment. Following code just works fine but I ...
0
votes
3answers
58 views
showing a FragmmentDialog from calls that extends View class
I have an activity which is called MainPage and it extends SherlockFragmentActivity.
This activity has tabs, each tab shows different fragment. One of the fragments displays a SaleRow view which is a ...
0
votes
0answers
21 views
Displaying a DialogFragment in MainActivity
I have a MainActivity (extends activity) and created a DialogFragment in a separate file. In order to show this DialogFragment, do I have to create a FragmentActivity or can I achieve this in ...
0
votes
1answer
68 views
DialogFragment keeps displaying full screen (not in a dialog)
I have a DialogFragment which contains a WebView. I create an instance of the DialogFragmentwithin the activity and call the show method on it. Usually this displays it as a Dialog over the current ...
0
votes
1answer
58 views
Soft Keyboard not displaying on touch in WebView DialogFragment
Edit: I have looked at the error page for this; no answers work. It seems it is an Android system bug that has not yet been solved.
First off I've referred to this similar question. But the solution ...
0
votes
1answer
33 views
Show DialogFragment from another DialogFragment
Hello I have a DialogFragment that displays list of options to the user , one of these options is "Delete" option ,when the user press the delete option i want to show another DialogFragment as a ...