Tagged Questions
0
votes
0answers
11 views
Android - Make Custom Alert Dialogue disappear after clicked
I am trying to make it so that when a button is pressed an alertdialogue pops up with a spinner in it, and in the spinner there are three options, how can i make it so that when one of the options are ...
0
votes
1answer
134 views
spinner inside an alertdialog.builder won't display any item
i am trying to make an alertdialog.builder with a spinner inside it. the spinner item is originally populated from the database. here is part of my code:
update.setOnClickListener(new ...
-2
votes
1answer
64 views
How to make an alert dialog with a spinner [closed]
I know how to make an alert dialog but I need to make one with a spinner so that when it pops up the person will have an option as to what happens. Does anyone have the code for an alert dialog with a ...
0
votes
2answers
81 views
How to react to spinner item selection in an AlertDialog.Builder-generated dialog?
In my application, I display a dialog box with the following code:
final AlertDialog.Builder builder = new AlertDialog.Builder(
getActivity());
final View myDialogForm = ...
-1
votes
1answer
226 views
Show alertDialog with radiobuttons when click a listViewItem
I have a listView with 2 items in it, the 2 items are "seconds" and "minutes"
When I press "seconds" I'd like a alertDialogBox to open en show 5,10,15,... seconds. Same when I press minutes
Something ...
0
votes
1answer
207 views
Create spinner adapter in android dialog builder
I have a problem with spinner in my alert dialog builder, it does not show any error while compilation time and I also call alertdialog.show() method to show my custom dialog but it can't populate my ...
0
votes
2answers
113 views
Error in adding a Spinner to an alertDialog
Am creating an android app by using TabActivity. in my TabActivity, i have a button. on click on the button i want to popup an alertDialog box, i need to add a spinner to the alert dialog box.
the ...
0
votes
1answer
863 views
Android: How to customize AlertDialog, Dialog an Spinner titles
I want to customize all dialogs, alertDialogs and spinner. I want to change the color of text and the background of the title bar.
I try to explain better:
I want the text (JOLLY BAR DI ...) to be ...
0
votes
4answers
243 views
Spinner in a alert.dialog crashes
I have an alert dialog which has a spinner into it:
LayoutInflater inf = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = ...
1
vote
2answers
311 views
How to add strings from alert-dialog box in android?
I am working with android. Now i got a problem with it. I created a progrm that will get the strings from user via an alert-dialog box. And add it into the spinner. But it shows some exceptions in ...
-1
votes
1answer
83 views
how to add strings from dialog box in android?
I need to add strings from alertdialog box to spinner at run time. Now i have the alertbox with an edittext and a button.please anyone help me to fix this.
0
votes
1answer
98 views
Pop up is not called from spinner
with ref. to my previous question View.onClickListner not called from other class
I have a Date time dialog which is called my this method
public static void markTime(final String ref){
...
0
votes
1answer
120 views
spinner in dialog with invalid statement in fillwindow()
I have a problem with my code. I have implemented a spinner in a alert dialog but when i show it is white and log cat say:
04-03 15:56:17.119: E/Cursor(460): Invalid statement in fillWindow()
What ...
0
votes
1answer
330 views
spinner in Alert Dialog
Can you help me please??
public void getCategory() {
AlertDialog alertDialog;
LayoutInflater inflater = (LayoutInflater) getApplicationContext().getSystemService(LAYOUT_INFLATER_SERVICE);
...

