2

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 customization.

I know I can use a standard Dialog for more control, but hope to avoid that if possible.

lowellk
  • 2,049
  • 4
  • 21
  • 26

1 Answers1

0

Take a look here: Android Borderless Dialog

A custom xml layout for the dialog should do the trick :)

Community
  • 1
  • 1
Todd Davies
  • 5,484
  • 8
  • 47
  • 71
  • That link shows how to use a Dialog instead of an AlertDialog. I'm specifically looking to use an AlertDialog. – lowellk Nov 01 '11 at 22:16
  • You could create a custom dialog that looks like an alert dialog. That's what I'd do, it's not too much hassle :) – Todd Davies Nov 03 '11 at 20:31