Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
380 views

Android Custom Alert Dialog Display Error after changing the Build Version

I am developing one simple demo . Here in this demo i just create one simple custom alert dialog . Its work fine. It shows me the perfect result when i build application in 1.6, but when i change the ...
10
votes
2answers
14k views

how to implement a pop up dialog box in iOS

After a calculation, I want to display a pop up or alert box conveying a message to the user. Does anyone know where I can find more information about this? Thanks
10
votes
3answers
17k views

How to implement a custom AlertDialog View

In the Android docs on AlertDialog, it gives the following instruction and example for setting a custom view in an AlertDialog: If you want to display a more complex view, look up the FrameLayout ...
8
votes
1answer
1k views

Why does AlertDialog.Builder(Context context) only accepts Activity as a parameter?

In my ongoing learning process (dialog boxes this time), I discovered that this works: AlertDialog.Builder builder = new AlertDialog.Builder(this); While the following doesn't work (fails at ...
8
votes
3answers
9k views

AlertDialog Input Text

I'd like to use AlertDialog as a Login or pin code or password dialog. Here is my code - AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.setTitle("Login"); ...
7
votes
4answers
847 views

Android: AlertDialog causes a memory leak

My application shows an AlertDialog with a ListView inside. Everything worked fine bun then I decided to test this for memory leaks. After running the app for some time I opened MAT and generated Leak ...
7
votes
1answer
677 views

How to use setMultiChoiceItems() with a Custom AlertDialog that uses an efficiency arrayadapter?

I am writing a music player that uses a custom Adapter extending BaseAdapter (efficiency adapter) that I want to display in an AlertDialog using setAdapter() where the user can either click on one of ...
6
votes
1answer
3k views

How do you validate the format and values of EditTextPreference entered in Android 2.1?

Does anyone have sample code to validate user entered text in preferences? For example, I have a EditTextPreference for user to enter an email address. I'd like to validate the format of email address ...
5
votes
1answer
575 views

Is there a way prevent AlertDialog from closing with invalid inputs?

I am using a simple text field alert dialog with a positive and a cancel button. I want to validate my alert dialog and prevent the done button from closing the AlertDialog if the input is invalid. ...
5
votes
1answer
263 views

How do I show an alert dialog only on the first run of my application?

I have an alert that I want to display only the first time right after starting the application for the first time. How can I do that?
5
votes
2answers
594 views

Change Custom Dialog 'header' to AlertDialog 'header'

I have made a custom Dialog, and I want the title to have a background like the AlertDialog. Better said: The place where it says "Custom Dialog" Needs to have a 'header' like this: I don't ...
5
votes
2answers
676 views

How do you change the textcolor of the list items in an AlertDialog

Hello I am trying to change the text color of the items in a list on a ListPreference pop up window. I have spent over an hour looking through all of the various style names but I can't find ...
5
votes
2answers
5k views

Android - Custom AlertDialog Color

So I see we can have alertdialogs with gray and white (when setinverse...) background colors. To learn why I checked themes.xml of the sdk, checking it I was led to drawables and there I realized the ...
5
votes
4answers
2k views

How to get selected item of a singlechoice Alert Dialog?

I have this code to show a dialog with singlechoice(radio) options. AlertDialog ad = new AlertDialog.Builder(this) .setCancelable(false) .setIcon(R.drawable.alert_dialog_icon) ...
4
votes
2answers
68 views

Android - Refresh data in an AlertDialog?

So, if I create an AlertDialog like so: AlertDialog.Builder b = new AlertDialog.Builder(); b.setItems(MyStringArray, MyListener); b.create().show(); And then I want to update the items in the list, ...
4
votes
4answers
2k views

Android EditText in AlertDialog seems too wide

It seems like the EditText in the image below is too wide. I assume that I have misused the SDK in some way and until convinced otherwise I am not looking for a way to specify some number of ...
4
votes
8answers
2k views

Displaying soft keyboard whenever AlertDialog.Builder object is opened

My code for opening an input dialog reads as follows: final AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.setTitle("Dialog Title"); alert.setMessage("Request information"); ...
4
votes
1answer
448 views

AlertDialog.Builder: No items for checkboxes are shown

I have a problem with the alertdialog.builder in the following code: public void showSettingsBox(){ final CharSequence[] items = {"Item1", "Item2", "Item3"}; final boolean checked[] = new ...
3
votes
2answers
60 views

Is this possible to show mapView on dialogBox android?

Is this possible to show MapView on a Dialog in android.and perform action like select a location to get lat lon for parent activity.
3
votes
2answers
134 views

Add custom background to AlertDialog Buttons

Is possible to set a drawable resources into the AlertDialog buttons keeping the process easy? Thanks!
3
votes
1answer
140 views

TextView inside an alert dialog won't scroll down

I am taking data from a website and placing inside of a text view so that I can center it using setGravity(Gravity.CENTER). However when i place the text view inside of the alert dialog I can no ...
3
votes
2answers
606 views

Android: How to set text color for list items in AlertDialog properly

I have an AlertDialog in my application. It contains a list of custom views with TextView widgets inside. Everything works fine on Android 2.x. The AlertDialog is created with white list and black ...
3
votes
1answer
715 views

Problems with alertdialog show in fragment android

I have followed android example but I have an incomprehensive error : void showDialog() { DialogFragment newFragment = MyAlertDialogFragment.newInstance(); newFragment.show(fm, "alert"); } ...
3
votes
1answer
1k views

Set AlertBox Title Bar Backgroung Color

How to change Background color for alertbox Title Bar? AlertDialog.Builder alert=new AlertDialog.Builder(getParent()); alert.setTitle("sample"); alert.show(); Thanks, Ramachandran
3
votes
2answers
847 views

custom alert dialog getting unwanted padding

I have tried to make a custom alert dialog and it mostly works very well. the functionality is working perfectly but the view is behaving in a weird way. The dialog layout consists of a button and a ...
3
votes
4answers
3k views

AlertDialog cannot be shown from ListActivity within ActivityGroup

I am trying to show an AlertDialog when an item in a ListActivity is clicked. My app displays the ListActivity under a tab of a TabActivity, and the AlertDialog shows up no problem. The ListActivity ...
3
votes
2answers
3k views

how to set contents of setSingleChoiceItems in onPrepareDialog?

Guys, in onCreateDialog i have this: case DIALOG_REVIEW: { if (bundle.containsKey("POSITION")) { final int position = bundle.getInt("POSITION"); ArrayList<String> alterNumbers = ...
3
votes
1answer
2k views

how to apply color in text message in alert dialog box in android

I am developing android app i am using alert dialog box how can alert message color AlertDialog.Builder builder = new AlertDialog.Builder(getContext()); ...
3
votes
2answers
8k views

the specified child already has a parent

I created the AlertDialog using the builder...It can shows when we call the show() method... i have the cancel button in that dialog...i can cancel that dialog by click the cancel button..My problem ...
3
votes
1answer
3k views

Button style in AlertDialogs

Does anyone know how to override the default style for AlertDialog buttons? I've looked through the Android source for themes and styles and experimented with different things but I haven't been able ...
2
votes
2answers
68 views

AlertDialog inside onClickListener

I'm trying to start an AlertDialog from an onClickListener but I'm getting the following error. The constructor AlertDialog.Builder(new View.OnClickListener(){}) is undefined Does anyone know how ...
2
votes
2answers
22 views

How can I build a dialog which is launched by a service?

I think my problem is easy to fix for you. I have a service running in the background and starting an Intent which starts an activity, which opens a dialog. Her is my code from the service: Intent ...
2
votes
3answers
90 views

AlertDialog using SimpleCursorAdapter does not display values

Im using a SimpleCursorAdapter to fill the list inside an AlertDialog. The SimpleCursorAdapter uses the android.R.layout.simple_list_item_1 layout. The dialog pops up. The list has correct amount of ...
2
votes
1answer
88 views

Is it possible to create an Android AlertDialog without a border?

I'd like to an AlertDialog that has no border. Currently all AlertDialogs on my 2 phones have borders, with the borders looking different on each phone. I'm guessing this is due to manufacturer ...
2
votes
2answers
74 views

Using Android AlertDialog

I want to create a single class which I can call when I need to show an AlertDialog with the parameters and son on I want. The problem is I dont know if that class have to be an Activity... the ...
2
votes
5answers
153 views

Variable number of textedits in alertdialog in android?

Is it possible to set variable number of textedits in alertdialog? I've tried to fill some container views such as StackView or LinearLayout dynamically but method addView is said to be not supported ...
2
votes
4answers
1k views

How to Automatically Close Alerts using Twitter Bootstrap

I'm using twitter's bootstrap CSS framework (which is fantastic). For some messages to users I am displaying them using the alerts Javascript JS and CSS. For those interested, it can be found here: ...
2
votes
2answers
176 views

Leaked Window when dialog button clicked

I'm trying to show an about page to the users of my wallpaper app when they click the about button however i get leaked window errors in a log cat and the activity quits before it shows the dialog. ...
2
votes
1answer
275 views

onPrepareDialog ListView not populating on first Alert Dialog Creation

I create an alert dialog that has a basic checkbox list in it when I press a button. If the items have been checked before, I want to be able to check the checkboxes for the user. I have accomplished ...
2
votes
2answers
108 views

How to pause the other instructions until the dialog message is closed

Hi I have a question on AlertDialog / Toast . When a user clicks on a button , just a message showing "You are right " should be displayed for 1 seconds. When I implement this using toast/alertdialog ...
2
votes
1answer
48 views

How to preload a dialog

I have a custom dialog and despite putting in all the code to inflate the view in its constructor, it seems like it takes much longer when the dialog is first launched compared to subsequent launches, ...
2
votes
2answers
130 views

Problem with Async task

I am trying to get data from a webserver and display a message saying "ok" or "invalid key". While it is getting the data it should produce a progress dialog. I have tried many methods including ...
2
votes
1answer
461 views

Android RatingBar on AlertDialog

I hit the following error when i run the code segment below which is showing a RatingBar on an AlertDialog. The error is java.lang.IllegalStateException: Could not execute method of the activity ...
2
votes
2answers
305 views

Checkbox in AlertDialog “pushed out” by TextView

I'm trying to create an AlertDialog to show an introduction message in my application, with a "Don't show this again" CheckBox below it. It works well when the message of the AlertDialog is short, ...
2
votes
3answers
408 views

XML attributes for text color of alert dialog

I'm applying a theme: <style name="myAlertTheme" parent="@android:style/AlertDialog"> <item name="android:textColor">#ff000000</item> </style> <style ...
2
votes
2answers
732 views

Android Custom Alert Dialog Error after updating android sdk r12

I got the following error after updating my android sdk revision to r12. error: Error retrieving parent for item: No resource found that matches the given name '@android:style/AlertDialog'. Here is ...
2
votes
2answers
327 views

Is it possible to create an expandable list AlertDialog?

In my app the users are able to select articles to download using different criteria. One of them is year and month. For this I would like an AlertDialog with a list of years. If the user then clicks ...
2
votes
1answer
163 views

Pressing the 'Search' key closes a non-cancelable dialog

So this is really odd...I have a ProgressDialog that is set to not be cancelable, but pressing the 'Search' key cancels it. 'Back' properly does not cancel the dialog, but pressing 'Search' does. I ...
2
votes
1answer
248 views

The AlertDialog is invisible when the Activity back to foreground

I write a program support download file. When in this download activity, I start a progress bar and then run a thread to do the download things. This thread send message to UI thread to notify how ...
2
votes
1answer
2k views

Dialog Box example in android

I want to display a dialog box on a button click. Here is my code, but it is not working. AlertDialog.Builder builder = new AlertDialog.Builder( getApplicationContext()); ...

1 2 3 4 5 11