0
votes
0answers
31 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(); ...
0
votes
1answer
44 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
2answers
52 views

Passing an Object to Fragment or DialogFragment upon Instantiation

I'm trying to work out the correct way to pass in an Object to a Fragment or DialogFragment without breaking the 'empty constructor' rule. For example I have created a custom View and for each one I ...
0
votes
1answer
205 views

Full Screen DialogFragment (over ActionBar) in Android

Im having some problems in show DialogFragment in Full Screen. In my application, i have an Fragment that when you click in some button it calls a DialogFragment. But the DialogFragment just fills the ...
0
votes
1answer
62 views

Dialog not working with webview

my application have a webview that when a user don't enter the correct username and password, an alert dialog will pop out and tell him that. my Webview Interface class is: public class ...
0
votes
1answer
47 views

Can the FragmentManager set content within a DialogFragment?

I currently have Fragments which are both placed into normal layouts and shown as DialogFragments. Each Fragment has its own actions, most of which consist of replacing the current layout with another ...
2
votes
1answer
24 views

Android: DialogFragment and universal xml

I am trying to take control of the database in android with Dialog Fragments. I mean, for example to add a new record I will click a button and pop-up fragment appears asking me for the specific ...
0
votes
1answer
225 views

Custom number picker inside fragment

Please, help mi with using NumberPicker from https://github.com/SimonVT/android-numberpicker. I have fragment inside which I have button. After clicking button I want to show my number picker (as a ...
1
vote
1answer
224 views

Android - ListFragment inside DialogFragment(AlertDialog): Fragment does not have a view

I'm trying to create a DialogFragment with a ListFragment nested inside of it. I'm using the nested fragment that was added in the 4.2.2 I'm using it with support library so my api version shouldn't ...
0
votes
1answer
107 views

How to call adapter inside dialogfragment inner class

I have a DialogFragment that opens when the application is launched the first time. The user selects a value which is then stored as a preference, then a listview is filled with data according to the ...
1
vote
3answers
103 views

Force user to select option in dialog

On starting the application for the first time I wanted to prompt the user (by dialog) to select their city, which would then consequently save their preference and load the proper data into the ...
1
vote
0answers
68 views

Spinner options (an IcsSpinner from ABS) inside DialogFragment are displayed truncated

I have the following problem displaying a Spinner inside a DialogFragment. The Spinner is displayed cut and it's only displayed OK when the keyboard appears. The Spinner is actually a custom class ...
0
votes
1answer
480 views

How to show DialogFragment from Fragment in actionBar android

I have action bar with tabs and tabs has fragments and inside this fragment I have button. what i want to do is when i click this button ( inside the fragment) show DialogFragment How can i do that? ...
1
vote
1answer
101 views

How does DialogFragment affect the lifecycle of the calling Fragment?

I have a Fragment calling a DialogFragment. Does this affect the lifecyle of the Fragment (i.e. does it go to onPause)? When the DialogFragment is dismissed, does the calling Fragment go to ...
0
votes
1answer
215 views

Android: Stretch the dialog fragment layout say Fit To Screen on Orientation change

I have a Dialog Fragment and when the layout in this fragment is inflated: When i change the orientation of this screen the dialog gets condensed and looks as if its forced to fit in the landscape ...
0
votes
1answer
50 views

Maintain Dialog and a Thread across different Activities or fragment?

I'm making an app for 7" tablets. I'm following the example given here http://developer.android.com/guide/components/fragments.html. There are two fragments. TitlesFragment containing list ...
0
votes
1answer
221 views

AlertDialog in fragments

I have some difficulties getting AlertDialog working in fragments. I have six buttons and when each button is clicked AlertDialog box should display its content. even though the prg is running without ...
1
vote
1answer
216 views

Cannot get DialogFragment to dismiss programatically

I have a DialogFragment that shows a list of items to pick from (similar to the attach dialog in Messaging). My problem is that I cannot get this dialog to dismiss when an item is selected. I've ...
0
votes
1answer
255 views

How to properly retain a DialogFragment through rotation?

I have a FragmentActivity that hosts a DialogFragment. The DialogFragment perform network requests and handles Facebook authentication, so I need to retain it during rotation. I've read all the ...
0
votes
1answer
253 views

Opening Fragment from a DialogFragment (replacing the Dialogs parent)

Let's say I have Fragment A, from which I open a DialogFragment like this: FragmentActivity fragmentActivity = (FragmentActivity) view.getContext(); FragmentTransaction ft = ...
0
votes
1answer
386 views

Refreshing a fragment from a DialogFragment

I've been going around in circles trying to do something that seems pretty basic. I have a DialogFragment that accepts a users input, then, on submission, refreshes a ListView in a Fragment that is ...
0
votes
0answers
75 views

AddFragment crashes after DatePicker selected AddFragment is 'removed' and re-'add'ed to MainAcitivty

I have a Main Activity with 3 Fragments. public void getAddFragment() { FragmentTransaction transaction = fragMgr.beginTransaction(); //toggle active fragments hFragActive = false; ...
1
vote
1answer
299 views

How add a DialogFragment in a normal Fragment?

This source showed DialogFragment created new Fragment and blocked all screen (FragmentActivity). I need to add a Dialog in the Fragment so that when I can scroll the screen and the DialogFragment ...
0
votes
2answers
452 views

Updating a ListFragment based on Async Task result

Scenario : I am having a list fragment which displays a list of friends. When an list item is pressed, I'm showing the details of the friend in a dialog fragment. Problem: In the dialog fragment, I'm ...
1
vote
1answer
291 views

getTargetFragment() returns null — works in one place but not another

I am having an odd problem. I am implementing the same code in two places (both in ListFragments), but one works and the other throws a NullPointerException. Here's my code (all part of a subclass of ...
0
votes
2answers
593 views

onAttach() never called in DialogFragment

I try to implement a callback from a DialogFragment. There is a good example, but they don't open this DialogFragment from a Fragment. ...
0
votes
1answer
955 views

Launching dialogfragments from another fragment:IllegalStateException: Can not perform this action after onSaveInstanceState

So I've been trying to understand how to solve this issue, but I can't really fix it. Right now I have one fragment with one button. When you press this button it will launch a custom DialogFragment ...
0
votes
1answer
935 views

Android PopupWindow vs. DialogFragment

I'm attempting to make a popup window that inflates on a button click in my application shows a listview populated by an adapter. Currently, I'm using a DialogFragment and it works alright. But I'd ...
1
vote
3answers
1k views

“No such method error” when using getfragmentmanager() in android

In my application I am using Dialog fragment as splash screen.So it will show the splash screen on app startup. When I run the app on devices below android version 3 , it shows an error like "No such ...
0
votes
1answer
282 views

Calling setTitle() on a DialogFragment from a ListFragment

I am trying to set the title of a DialogFragment from the onActivityCreated method of a Fragment extending ListFragment. public void onActivityCreated(Bundle savedState) { ...
5
votes
4answers
6k views

getSupportFragmentManager() is undefined

I'm getting the following error: "The method getSupportFragmentManager() is undefined for the type new View.OnClickListener(){}" in my fragment file shown below. I have the compatibility library ...
2
votes
2answers
209 views

When can getActvity() in a retained, uncancelable DialogFragment be null?

If I have a DialogFragment that is retained and uncancelable, in what situations can getActivity() return null? As far as I understand, the only ways an Activity can be destroyed are: Via the back ...
4
votes
1answer
443 views

android fragment orientation change

EDIT: I have a DialogFragment where the reference inside the parent Activity is NULL after I change device orientation. How do I fix this? Fragment creation: MyFragment myFragment = ...
4
votes
3answers
3k views

How to set DialogFragment's width and height?

I specify the layout of my DialogFragment in an xml layout file (let's call it layout_mydialogfragment.xml), and its layout_width and layout_height attributes particularly (to be 100dp each let's ...
8
votes
1answer
2k views

Android DialogFragment disappears after orientation change

I have a FragmentActivity support v4 class which implements two side by side (kind of like gmail) fragments and a button which can bring up a DialogFragment. This all works great unless I have an ...
0
votes
1answer
421 views

Calling a method from layout xml with DialogFragment.. how does that work?

Let's say I have this button: <Button android:id="@+id/idone" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:text="D2" ...
1
vote
1answer
2k views

How to make DialogFragment modal?

I have a DialogFragment : public static class CharacteristicDialog extends DialogFragment { int mNum; static CharacteristicDialog newInstance(int num) { ...
0
votes
0answers
261 views

Inflate DialogFragment in layout xml

I'm trying to inflate DialogFragment through xml like this. <fragment android:id="@+id/my_id" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
2
votes
2answers
2k views

DialogFragment - setting initial values and retaining state after rotation

I have created an DialogFragment which is building and returning AlertDialog from onCreateDialog method. The AlertDialog contains two EditText views. I'm setting the initial values of these two edit ...
1
vote
1answer
290 views

How to ignore 'search' key press in DialogFragment

I was previously extending the Dialog class for my dialogs and I had to use the following code segment in my dialogs so that they would not be dismissed when the phone's search key was pressed: ...
0
votes
3answers
971 views

getSupportFragmentManager failing in compatibility library

I am displaying a dialog fragment in activity, tried using show() and add() methods. The code is given below HelpDialogFragment hdf = HelpDialogFragment.newInstance(); FragmentTransaction ft = ...
2
votes
1answer
111 views

Overlaying one common fragment helping Other Tab Fragments

Here i Have a One MainActivity with four fragments and all Fragments are Just Swipe+tab view types.Each is containing listview. Problem is that i want to load one Extra Fragment which should be common ...
1
vote
0answers
139 views

Admob in Android Fragment

I am unable to place AdMob in ActionBarSherlock Fragment. Since in Activity the ActionBar won't allow to display the xml layout but the xml file is referenced in the fragment class. I am running into ...
5
votes
3answers
989 views

Does v4 support library use new classes when available?

I know that the v4 support library can be used to implement in old android versions things that have been introduced in more recent versions, such as Fragments.. If we implement an app that uses the ...
0
votes
0answers
89 views

How to access a Fragments previous state?

Below is the code to what I am doing. I have a DialogFragment which is used for a DatePickerDialog. Now my problem is whenever I click on the button, even after a new date has been inserted, the ...
3
votes
3answers
6k views

How to make a DatePicker with DialogFragment and FragmentManager?

So I have been at this for a while, and I cannot seem to figure it out. I am fairly new at Android development, so bear with me please. I wasn't too familiar with creating a Datepicker and I learned ...
2
votes
1answer
3k views

Communication between fragments/dialogs in android

I have an activity with two fragments: one for showing products in a gridview and the other to show the products that the user adds to the order (ListFragment). When the user clicks a product in the ...
0
votes
1answer
169 views

TextView focus when adding fragments

I have an activity with a single TextView (tv1) and a button that, when clicked, displays a DialogFragment with another TextView tv2. tv1 has focus when the activity starts, and tv2 has focus when the ...
0
votes
1answer
418 views

get View of default dialog

I'm trying to implement ProgressDialog in DialogFragment and use it as a Fragment. My onCreateDialog looks like this: public Dialog onCreateDialog(Bundle savedInstanceState) { String message = ...
2
votes
2answers
2k views

DailogFragment - getArguments/setArguments - why passing arguments in a bundle?

In the official example http://developer.android.com/reference/android/app/DialogFragment.html#BasicDialog the fragment is being created with use of static factory method that wraps arguments in a ...

1 2