Tagged Questions
0
votes
1answer
38 views
How to make spinner dialog display currently selected item?
I know I can set a spinner's currently selected item using mySpinner.setSelection(index);. But when I want to select another item, the spinner's dialog never shows/highlights the currently selected ...
0
votes
2answers
29 views
Can interact with spinner items shown in dialog using onitemselectdlistener?
I have a spinner showing categories like energy, power, etc in my units converter application. I am using 3 spinners for categories, units (from and to). From spinner I'm displaying items in dialog. ...
0
votes
2answers
101 views
How to make spinner in dialog mode?
I have button in my application and when I click on this button, it opens a spinner, but spinner is in dropdown mode and I need to make it in dialog mode. For API 11 and higher, there is a simple code ...
0
votes
0answers
67 views
Dismiss spinner's dialog when user presses out
First of all sorry for my english. I know it isn't very good but i hope you can understand me. I've been looking into this for some hours. I have created a spinner in a layout file setting the ...
0
votes
0answers
282 views
Android Dialog with Spinner at bottom => dropdown not fully working
I have a simple dialog with an EditText and a Spinner... The Spinner only has two items and is at the bottom of the dialog...
When using dropdown-mode, only ONE item is shown in the dropdown list, if ...
2
votes
3answers
513 views
Spinner's Drop Down not working properly
I want to create custom Spinner Dialog for my app. I have found this & this.
both are good.I have update my code as per requirement. i am using selector file for changing dialog background view ...
0
votes
3answers
139 views
How to get Item Selected in Spinner?
I have a spinner in my DIALOG and I want to get the item selected when i clicked OK button.
Everytime I press "OK" in dialog. a NullPointerException always comes out.
NOTE:
My Spinner is at the ...
0
votes
3answers
197 views
Dialog Spinner does not return value
I have a dialog setup that has two spinners connected to a cursor. I have worked through a couple of problems with the help of this site, but I can not seem to get past this point. Everything I find ...
0
votes
3answers
199 views
Android Development: Combining two Java files
I have two different java files and was wondering if there was a way to combine them so that both codes were in one file.
The below simply creates a dialog box that does nothing when no is clicked ...
2
votes
1answer
2k views
Unable to add window — token null is not for an application
hi im trying to inflate an view(B.xml)(which has spinner in it)from a AsyncTask's onPostExecute() in a view(A.xml)mainActivity
MainActivity.class
protected void onPostExecute(String result) {
...
2
votes
1answer
364 views
DatePickerDialog called by a spinner onClick
I cant find anything on sof or google! so i need your help!
id like to click on my (empty) spinner, so i get a date or timepicker dialog shown. I cant find anything how to handle that. these are my ...
0
votes
2answers
287 views
Dialog shows twice
I'm making an dialog box on my EditText, so when I touch the EditText, the box will show (setOntouchListener). The problem is: when I touch the EditText, the box is shown twice (when I click dismiss ...
0
votes
2answers
331 views
How Do I add spinner to AlertDialog.Builer?
I am creating a custom AlertDialog with AlertDialog.Builder. However, I am unable to get my spinner to work within the AlertDialog. Whenever i click the spinner, I get an error that says
...
0
votes
2answers
728 views
Android Spinner in a dialog give this error android.view.WindowManager$BadTokenException: Unable to add window
i need to show a Dialog in my application. In this dialog there is a Spinner. So i use this code to show the dialog and fill the Spinner:
public class setup4 extends Activity {
public ...
0
votes
0answers
215 views
Styling Dialog for spinner selection
I need to style the dialog shown when the user has clicked the spinner for a selection.
The dialog seems to use the default dialog theme, although I set up a custom Theme in the manifest for my ...
1
vote
1answer
1k views
How to change spinner's dialog style ?
How to change spinner's dialog style ? I need to change background color from white.
0
votes
3answers
2k views
how to get a spinner into an alertbox/dialog?
I am trying to put a spinner into an alert box and would much appreciate it if someone would point me in the direction of a tutorial or show some code on how this can be done.
0
votes
1answer
392 views
ResourceNotFoundException using Spinner
I would like to create a customized popup dialog which contains a spinner. The dialog needs to be launched from an Adapter class, below is my code:
Dialog dialog = new Dialog(mContext);
...
1
vote
1answer
508 views
Android spinner on dialog crashes if the spinner is open (list up) and you rotate the device
I have a Dialog with a couple of buttons and a spinner that seems to work fine except my app crashes under the following circumstances:
1. start activity
2. show dialog with Activity::showDialog ...
3
votes
1answer
3k views
Spinner in dialog - NullPointerException
I want to show custom dialog with a spinner. Strangely enough, I get NullPointerException when I try to set the adapter of the spinner...
Dialog dialog = new Dialog(this.getApplicationContext());
...
2
votes
3answers
9k views
How do I create an Android Spinner as a popup?
I want to bring up a spinner dialog when the user taps a menu item to allow the user to select an item.
Do I need a separate dialog for this or can I use Spinner directly? I see that ...
0
votes
1answer
753 views
Android Display spinners in Ok/Cancel popup dialog
I want to have a popup dialog with OK/Cancel and two spinners.
(1) Is this possible?
(2) Has this been done in any other apps?
Thanks
4
votes
1answer
677 views
Dialog with a Spinner + orientation change
I have a Dialog with a Spinner. This is a managed dialog (ie I use showDailog(DIALOG_ID) to show it).
If I click on the Spinner there are 2 dialogs now - the main dialog and the Spinner popup.
After ...
0
votes
1answer
145 views
How to add indents on the left and right of spinners added to Custom Dialog on android?
I've created custom dialog (from xml file), like below:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
3
votes
2answers
9k views
Android - How to implement a listbox as a modal dialog/popup
In my Android app, when a user clicks on a button, I want a list box to show up as a modal dialog, just like the way a Spinner works, except that the list box can also allow multiple choices. I tried ...
1
vote
1answer
837 views
Android How To Close Spinner Dialog
Created Spinner Dialog as explained here: http://www.dotnetexpertsforum.com/dialog-box-with-spinner-view-in-android-t1485.html
How does one close the dialog after a user selection?
If I cancel the ...
3
votes
2answers
3k views
1
vote
4answers
2k views
app crashes when alert dialog is open and phone(emulator) changes its orientation
guys I've been searching and studying about this for a whole day. The app crashes not only when a dialog is open, but also when a spinner is open (and I'm sure it would be bunch of other scenarios ...
1
vote
1answer
10k views
Set spinner within custom dialog
I'm getting a NullPointerException while attempting to create a Spinner within a dialog and can't seem to debug it because the code looks solid. Wonder if anyone else has any idea. Any help is greatly ...
