Questions tagged [customdialog]
338 questions
0
votes
3 answers
inflating layout item
i'm sorry if this question is a repeat.
I have a problem:
I have one main_activity with main_layout.xml.
I have a TextView and SeekBar1 in it.
I added a menu with a custom_dialog_layout which has a seekbar2.
Dialog shows that custom_dialog with…

prashantwosti
- 980
- 2
- 7
- 17
0
votes
5 answers
Use Custom dialog from outside the Activity
I am working on to use the custom dialog from outside the activity, i have written the dialog code in a class and then call that dialog in the Activity on click of the button. But that is not working for me Application crashes when i click on the…

Suraj
- 113
- 2
- 10
0
votes
1 answer
how to customize dialog window nsis
I am a beginner in NSIS.
I want to make an NSIS installer in which I want to open a web page url on which there are some flash games which I want user to play. For this I am using nsWeb plugin but it doesnt seem to support flash files. So I…

foobar
- 2,887
- 2
- 30
- 55
0
votes
1 answer
on click on edit text, one custom list dialog box comes and list items should change according to the text change in edit Text, for android
I am developing one android app for ice cream sandwich
I want to populate a dialog box containing list items(only one column) from database, on edit Text click, but list should get filter according to the text change in edit text. is that possible…

UdiT
- 609
- 1
- 6
- 21
0
votes
1 answer
Change pre-defined message in Windows installer using VS 2010
I have looked at this question, but it is something different.
I need to change the message of MsiRMFilesInUse Dialog box.
Currently the message is "Do not close applications. (A reboot will be required.)"
I need to get it changed to "Do not close…

Tilak
- 30,108
- 19
- 83
- 131
0
votes
2 answers
Adding button to the custom dialog's layout(dialog.xml)
Thanks for the answers guys, After following your replies i somehow managed to get something like this from the following code, But still i have some more fixes.Please try to help.
dialog.xml

suresh cheemalamudi
- 6,190
- 11
- 49
- 67
0
votes
1 answer
ListView Item Click Open Custom Dialog with Another Custom Listview
Here I have created custom dialog which includes listview with single choice mode. when user selects one of the item in listview then it should be selected when dialog is opened next time and user must be able to select another item also. Butmy…

Zankhna
- 4,570
- 9
- 62
- 103
0
votes
1 answer
How to create the same google documentation custom dialog example of text message limit?
I'd want to create exactly the same custom dialog that you can find on Google documentation.
The dialog is this one:
How I can do?
I need this dialog because I want that users can choose an integer to use it for something in my app.
Please help…

Meroelyth
- 5,310
- 9
- 42
- 52
0
votes
1 answer
ListView with Custom dialog box
I have written the code in which I am getting the result from database which I am binding to listview successfully.But Now I want that listview in Custom dialog format.Means List data should come in dialog.How to attach the listdata to custom dialog…

user1758835
- 215
- 4
- 17
0
votes
0 answers
how I can make custom dialog having multiple checkboxes under multiple header text
I came across a dialog popup in ipad which contain multi checkboxes under multiple header titles, here is the sample dialog which i need to make in android
I can able to create multiple checkboxes under a single text title....but cannot create…

Vivek Singh
- 1,201
- 3
- 17
- 39
0
votes
2 answers
android custom dialog on tab activity
I have a tab activity caled "tabActivity", inside the tab activity i want a button "butDetail" at "saveImageActivity" to show a custom dialog "detail.xml". this is my code to show the dialog
public void butDetail(View v){
final Dialog dialog =…

adi.zean
- 1,085
- 3
- 12
- 15
0
votes
2 answers
Android textview options in custom dialog
I created custom dialog and i have textview in it. Text is pretty close to edge of my dialog box, so i wonder if I can set some space between my text and left and right edge of dialog box and how ??

Goran
- 1,239
- 4
- 23
- 36
0
votes
2 answers
SetOnClickListener error in Custom Dialog
This part of my code for creating custom dialog..
final Dialog dialog = new Dialog(preferences.this);
dialog.setContentView(R.layout.customdialog);
dialog.setTitle("Title...");
TextView text = (TextView)…

Goran
- 1,239
- 4
- 23
- 36
0
votes
1 answer
How to create animation for Alert dialogs?
I have an android application which uses a custom Alert Dialog for showing an image and its description.
I want to make this dialog
Pop up from center like in iPhone.
Push down to center when cancelling.
I know that it is possible by applying…

Asha Soman
- 302
- 2
- 6
- 18
0
votes
1 answer
How to Show custom Dialog at center
I have a custom dialog for my android application.it shows an image and text with two buttons at left and right.Here is my dialog
public class GalleryPopUp extends Dialog {
private Context context;
private ArrayList bitmapList =…

Asha Soman
- 302
- 2
- 6
- 18