1

How to create a progressbar without border?

Sergey K.
  • 24,894
  • 13
  • 106
  • 174
santhosh
  • 11
  • 2
  • Possible duplicate of http://stackoverflow.com/questions/3863493/progressbar-dialog-without-border – DeRagan Dec 02 '10 at 05:42

1 Answers1

2
<?xml version="1.0" encoding="utf-8"?>
<style name="my_style" parent="@android:style/Theme.Dialog" >
<item name="android:windowBackground">@null
</item>
</style>

From this similar thread: ProgressBar dialog Without Border

Community
  • 1
  • 1
Eric
  • 2,098
  • 4
  • 30
  • 44