0

Android ホロ テーマには Holo.ProgressBar.Large スタイルがあります。

<style name="Widget.Holo.ProgressBar.Large" parent="Widget.ProgressBar.Large">
    <item name="android:indeterminateDrawable">@android:drawable/progress_large_holo</item>
</style>

progress_large_holo.xml があります。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <rotate
         android:drawable="@drawable/spinner_76_outer_holo"
         android:pivotX="50%"
         android:pivotY="50%"
         android:fromDegrees="0"
         android:toDegrees="1080" />
</item>
<item>
    <rotate
         android:drawable="@drawable/spinner_76_inner_holo"
         android:pivotX="50%"
         android:pivotY="50%"
         android:fromDegrees="720"
         android:toDegrees="0" />
</item>

レイヤーリストに項目が 2 つあるのはなぜですか?

4

4 に答える 4

0

背景が白s only white progress bar, when background is black thereの場合、進行状況バー (前景に 1 つ、背景に 1 つ) があります。見たい場合は、Android設定を開いてアプリケーション画面に移動してください。

于 2013-11-13T21:12:14.457 に答える