アプリがあり、そのアプリにはローディング サークルがあります。ローディング サークルは Android 4.2 以降で見栄えがします。しかし、それは同じようには見えません。バージョンごとに最新の Android バージョンのローディング サークルを使用する方法はありますか? 現在、styles.xml のスタイルでそれを行っています。しかし、これは私が望むようには見えません。どこでも同じように見えるようにしたいだけです。それを行う方法はありますか?
これが現在のスタイルです
<style name="GenericProgressBackground" parent="android:Theme">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
<item name="android:background">#DD111111</item>
<item name="android:gravity">center</item>
</style>
<style name="GenericProgressIndicator" parent="@android:style/Widget.ProgressBar.Small">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:indeterminate">true</item>
</style>
そして、私のレイアウトのプログレスバーはもちろんスタイルを使用しています
style="@style/GenericProgressIndicator"