Questions tagged [customdialog]

338 questions
-1
votes
2 answers

Android Dialog with standard width like AlertDialog

I'm trying to create a Custom Dialog, setting my layout in order to customize it, but keeping the standard width. In THIS picture we see a basic Dialog(AlertDialog), which has a defined width. On phones it has the full width minus some pixel, on…
Emaborsa
  • 2,360
  • 4
  • 28
  • 50
-1
votes
2 answers

How to set the custom dialog on exact location when i click on view in android?

When I click on image then custom dialog is show on Top of the screen so Please can any one suggest me that how to set custom dialog at the exact location that was clicked
-1
votes
1 answer

Custom alertDialog with listview android

How to make a custom AlertDialog in listView format and each listItem must contain a image and textview. There is a intent passing on clicking of individual listItem. How to do this.?
-1
votes
1 answer

Android custom dialog null exception

line 102 and 104 null exception i think imageView and textView id have problems. Layout: activity_main.xml and custom_view.xml -- there are imageView and textView. code: protected Dialog onCreateDialog(int id) { Dialog dialog = null; …
user2841650
  • 33
  • 1
  • 5
-2
votes
2 answers

I want to remove Top of custom dialog

I want to remove light purple line in Custom Dialog... In Custom Dialog, it has two TextView, one ImageView and one Button. It is about user profile, and if you click Button you can edit your profile. I do not know what is the problem.purple…
-2
votes
1 answer

getting null pointer exception inside custom dialogBox

Hey I am creating a custom dialog box containing 2 editText. I don't know what is wrong with this code but whenever the user click on submit it say null values inside the editText. Can anyone help on this ? Below is the code for custom…
Ashish Choudhary
  • 706
  • 1
  • 7
  • 18
-3
votes
2 answers

Get value from edittext in custom dialog

I have an custom dialog and 2 edittext final Dialog add_block_dialog = new Dialog(BlockNumActivity.this); add_block_dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); …
RAT
  • 23
  • 4
-3
votes
1 answer

how to add a widget which has two spinner items and put in a single dialog in android

I am trying to design confirmation dialog which has two lists (scrollable). One part shows numbers of foot and another shows inches values. This should be in a single dialog as shown in the image below. Any suggestions to do this is appreciated. I…
1 2 3
22
23