santhosh
santhosh

Reputation: 11

Progressbar in Android without border

How to create a progressbar without border?

Upvotes: 1

Views: 2083

Answers (1)

Eric
Eric

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

Related Questions