ProgressBar Circle shows no progress on android L (API 21)

前端 未结 1 495
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-13 12:04

I have a circular ProgressBar to count down time. It workes perfectly on kitkat and before, but on android L it always shows a full circle no matter what progress I set.

相关标签:
1条回答
  • 2021-02-13 12:42

    The default value for android:useLevel under the tag incorrectly changed to false in the L Preview build. You can work around this by explicitly setting it to true.

    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
        <item>
            <shape
                ...
                android:useLevel="true">
                <solid
                    ...
    
    0 讨论(0)
提交回复
热议问题