The alertdialog tag has no wiki summary.
0
votes
1answer
16 views
Remove the inscription on the background
How to remove this inscription in the background? I wish that I had only Dialog
if(status == ConnectionResult.SUCCESS) {
} else {
int requestCode = 10;
Dialog ...
1
vote
1answer
33 views
Google Maps Android API v2 - detect long click on map AlertDialog (Solved)
I am trying to create one app,when I click longer in to the screen I want to pop up a AlertDialog.
I wrote some code but gives errors.
Sorry for my bad english.
Thanks in advance.
public class ...
0
votes
2answers
19 views
How can I set the focus to a specific input field in an AlertDialog?
In a login dialog with two input fields (user name / password) I would like to set the focus on the second field (because user name is stored in preferences).
Does the AlertDialog.Builder provide a ...
0
votes
0answers
21 views
Customized alert box or default alert box inside service in Android [duplicate]
I have created a service that keeps checking my databsae (remote) for results. If the results are found I want a dialog box that shows - Results found please click OK to see in detail - Is this ...
0
votes
0answers
10 views
Are there red x and green check AlertDialog icons?
Im using an AlertDialog like in this small tutorial:
My dialogs look like this:
private void AlertDialog_hardware_support_test_result_negative()
{
AlertDialog alertDialog;
...
0
votes
1answer
17 views
CheckBox error on dialog interface
I'm struggling in a little problem that i can not find! In my main activity i want to display an AlertDialog and have a checkbox if the user do not want display the dialog again.
I can make the ...
0
votes
0answers
11 views
Alert Dialog is displaying incorrectly when using custom theme in activity
I'm using a long click listener in a listview to display an alert dialog. The host activity is displayed as a dialog and use a custom theme.
My problem is the alert dialog looks terrible (the applied ...
0
votes
1answer
41 views
How to show print_r() content in alert message box?
I know that whenever I write
$food = array('fruit'=>'apple', 'veggie'=>'tomato', 'bread'=>'wheat');
$text = print_r($food, true);
echo $text;
Output will be:
Array('fruit'=>'apple', ...
0
votes
2answers
17 views
Might the result in AlertDialog messege?
my program is work. hmm... I try the result show in message AlertDialog, it didn't work. Could it be work?
package diahp.d;
import android.app.Activity;
import android.app.AlertDialog;
import ...
0
votes
1answer
18 views
IllegalStateException with TextView inside AlertDialog on Android project
I am working on Android project. I have some issue and I don't know how to fix it. I found similar topics, but suggested solutions didn't help.
After I click button to get Dialog (with EditText ...
0
votes
1answer
21 views
ScheduledExecutorService as timeout shows no AlertDialog
I'm trying to implement a timeout behaviour in my app. There should also be a warning (alertdialog) 5 seconds before the timeout actually happens.
I want to use a ScheduledExecutorService to do so.
...
0
votes
1answer
125 views
+50
how Create setAdapter() for a AlertDialog
i create a CustomDialogBuilder which extends Dialog... i want to create the method setApater().. i create that section but the onClick method on the adapter is not working..
my customDialogBuilder ...
-3
votes
2answers
49 views
Prevent AlertDialog from dismissing if the input fields are empty
I have an AlertDialogBox with a set of EditText objects.
I want to validate the AlertDialogBox such that if the EditText objects are empty then pressing the "OK" button should not dismiss the dialog.
...
0
votes
0answers
36 views
How to make alert dialog appear only once when dragging the seek bar
Ok so i when i pull the seek bar the alert dialog freaks out and comes up multiple times on the avd.
How do i fix it so that when there is no user input in the ETCash the alert Dialog shows up on the ...
0
votes
2answers
40 views
How to start activity on button click in alertDialog
I have an alert dialog setup within a class called 'ViewBreakout' I have the button setup fine and it creates the button but when I try to add an intent I get an error message that reads
"The ...
0
votes
1answer
23 views
Get item name from DialogIinterface click event
List<String> fetchcategorynames=obj_Categorydb.fetchcategory();
CharSequence[] categorynames=fetchcategorynames.toArray(new CharSequence[fetchcategorynames.size()]);
...
0
votes
0answers
32 views
theming android alertdialog desperate
this is my code for call to alertdialog
private void lanzar() {
LayoutInflater inflater = LayoutInflater.from(this);
View view = inflater.inflate(R.layout.dialog_2, null);
Builder ...
0
votes
0answers
30 views
how to hod alert box after clicking an option? android
I use dialog box in my app for the user to change his password
I want to hold the dialog box in some states
I try to use dialog.wait();
but it's not work .. and some errors appear !
this is my ...
1
vote
2answers
31 views
AlertDialog does not fire on ItemLongClickListener
I´ve got a ListView that I give an OnItemLongClickListener. On LongClick on an Item, an Dialog should be shown.
lv.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
...
0
votes
1answer
29 views
Modifying EditText Color in AlertDialog won't work
I'm a newbee in programming application for android. For my app I'm in need for
password request after the application starts..... so far so good.
But in terms of calling my alertdialog the entered ...
0
votes
1answer
87 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 ...
0
votes
1answer
40 views
Closing Soft Keyboard on Home Button Press
So I have an app with a custom AlertDialog that has an Ok and Cancel button, and an EditText Object. When I click on the 'Name of Workout' button, the AlertDialog and the soft Keyboard open. At this ...
0
votes
2answers
59 views
why alertbox is closing after clicking ok button?
@Override
protected Dialog onCreateDialog(int id)
{
final AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Test");
alert.setIcon(R.drawable.logo1);
...
0
votes
1answer
56 views
Custom AlertDialog ScrollView, too big in 2.3 missing ok button
I have to show a help info, instructions of how to use the program, i've chosen the AlertDialog using a custom XML with an ScrollView.
I tested in tablet, xperia neo and 2 virtual devices. In 3 of ...
0
votes
3answers
51 views
How to get height of AlertDialog on Android
I use below code to show a dialog:
private AlertDialog MyDialog;
public void adddialog() {
AlertDialog.Builder MyBuilder = new AlertDialog.Builder(this);
MyBuilder.setTitle("Title")
...
0
votes
1answer
70 views
Android App - trouble setting AlertDialog view with custom ListView
I am trying to use the following code to put a ListView with a custom ListAdapter into an AlertDialog. Currently the activity will display the AlertDialog, but with no ListView displayed:
public ...
0
votes
1answer
40 views
Cannot be resolved to a type: Error
I am getting this error: ShowDialog cannot be resolved to a type
Here is my code:
final CharSequence[] items = {"Low", "Medium", "High"};
AlertDialog.Builder builder = new ...
0
votes
1answer
35 views
Using Different types of Dialogs in Same Activity
First off, I'm brand new to android development, and mostly brand new to programming, so please bear with me. I've got one Activity with several buttons. The first button, 'Name of Workout', opens up ...
0
votes
2answers
81 views
How to custmize & Design the `alert()` box?
Here is script in my website's footer that will check that specific font installed or not in computer. If installed or not it will prompt alert box. I want to customize:
Design of that alert box
...
0
votes
1answer
32 views
What arguments should be passed to .show()?
So I'm pretty new to Android development, and Java programming in general (well, okay, so programming period...), so I came across something that I found the answer to online, but I want to know WHY ...
0
votes
1answer
81 views
In Android multiple checkboxes, checkbox Remain checked that I have selected even when close my app
I have three checkboxes in alertdialog. i want when I click on sencond checkbox it remain checked until user desn't click on other checkbox as per his/her convince. Here is my code Please provide some ...
0
votes
5answers
100 views
display textview in alert dialog
In my code, I have an AlertDialog and a TextView. I'd like display this TextViewin my AlertDialog but I don't know how to do it. I don't know how to add the View in a AlertDialog.
I could show my ...
0
votes
3answers
86 views
set Transparent background to alertdialog in android
I want to show alert dialog with transparent background.
My code of alert dialog is:
AlertDialog.Builder imageDialog = new AlertDialog.Builder(SubProducts.this);
LayoutInflater inflater = ...
0
votes
2answers
44 views
Pop an AlertDialog from AlarmManger
I'm trying to make the BroadcastReceiver Run an AlertDialog and it's just skipping the call to the Dialog Method(And throwing into the catch exception):
My BroadcastReceiver:
public void ...
1
vote
2answers
114 views
Multi answer quiz in jquery with custom alert
Kinda new to jquery and I have a multiple answer quiz question. It is working correctly until I add a custom error message.
The question has multiple correct answers that gets checked against a ...
0
votes
0answers
33 views
How to style PopupMenu and AlertDialog with theme.xml and style.xml
i want to skin my Android App with multiple Color Themes.
This Guides/Tools help me to generate the basic theme.xml and style.xml
http:// android-holo-colors.com
http:// ...
0
votes
2answers
24 views
Is it possible to open a webpage in an AlertDialog?
I want to open a web site within a Alert Dialog, but I have no idea how to do this. Any tips to get this to work?
The alert dialog should take the user to the webpage within the alertdialog itsself
...
0
votes
1answer
55 views
Using Intents within alertDialog
I have the following alert dialog that is triggered with an if statement:
if (x < 10) {
AlertDialog.Builder builder= new AlertDialog.Builder(parentActivity);
...
-1
votes
2answers
47 views
Using AlertDialog buttons to start a new activity
I am trying to use an alertdialog to allow the user to press the ok button and open a new activity. Below is my code:
My first activity
AlertDialog.Builder dialog= new ...
0
votes
4answers
87 views
Not Show Alertdialog when onclick button
I created Alert dialogbox and its not showing when i click on button.And its crashing app. My code is below. What is wrong in my code?. Please Help me!!
backBtn.setOnClickListener(new ...
0
votes
2answers
49 views
Why OnclickListener doesn't work with my ViewList in the AlertDialog?
I want to make a file picker with a AlertDialog based on a ListView.
My problem is that my onClickListener seems to do nothing. So when I click on a line in my list nothing happens. Here is my ...
0
votes
3answers
57 views
android AlertDialog display once
I want to display dialog only once at installation. I am accepting value from user in currentIntervalChoice. But it is not accessible in else part. How can I do this. I have declared ...
0
votes
1answer
35 views
Cannot close Activity from AlertDialog called in PostExecute
I have a couple of Activities both of which send files up to the internet.
I would like to put the posting procedure into a separate class file so that the same procedure is called for each activity.
...
0
votes
4answers
104 views
Calling onResume method after an alert is dismissed in Android?
I want to know if when the user presses "Yes" on an alert dialog and this one is dismissed, that event executes the onResume method of the activity in which the user is in.
Because I have a "Clean" ...
0
votes
0answers
33 views
Focus switches between EditTexts in AlertDialog if dialog moves/resize (eg. when keyboard shows)
I have an AlertDialog with a custom View containing two EditTexts. The first is listed in the XML file and always visible, the second is constructed later if necessary.
I had the follow this answer ...
0
votes
0answers
24 views
What is the best way to manage AlertDialog when phone rotates?
I create my dialog with AlertDialog.Builder.
When dialog is shown, if you rotate the phone dialog will be destroyed and it will leak.
To prevent this, i have to set a class-wide variable which holds ...
0
votes
2answers
44 views
How to call AlertDialog inside AlertDialog?
I have this code:
public class Example
{
String sp,st;
SQLiteDatabase database, database2;
void func()
{
new AlertDialog.Builder(view.getContext())
...
0
votes
0answers
15 views
Android- Show alertdialog updated from the cloud or mysql
I would like to show a AlertDialog, when there's an update when new content, I searched on google but I only get CloudMessage examples, anyone knows or has a tutorial on how to do it? thanks ...
0
votes
1answer
146 views
Android: disable DialogFragment OK/Cancel buttons
How can I disable OK/Cancel button of a DialogFragment when it is created using an AlertDialog ?
I tried calling myAlertDialogFragment.getDialog() but it's always returning null even once the fragment ...
0
votes
0answers
98 views
Popup login page with two EditText Fields
Hi Guys this is my first post here and i'm obviously a beginner in android development
1.So my main.xml consists of two TextViews(username and password with blank texts) and two button's (login and ...





