Reputation: 11
How to create a progressbar without border?
Upvotes: 1
Views: 2083
Reputation: 2128
<?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
Upvotes: 2