在白色背景的ProgressBar

时间:2010-12-21 20:02:11

标签: android progress-bar

旋转的ProgressBar不会在白色背景上“显示”,因为微调器是白色的。 Android是否包含任何ProgressBar样式以与白色背景形成对比?或者我需要自己涂抹吗?

1 个答案:

答案 0 :(得分:13)

要仅更改一个ProgressBar,请在ProgressBar上使用Widget.ProgressBar.Inverse样式:

<ProgressBar ... style="@android:style/Widget.ProgressBar.Inverse" />

要更改所有应用的ProgressBar,请在清单上使用Theme.Light:

<application ... android:theme="@android:style/Theme.Light">