Tôi muốn thay đổi thanh tiến trình tùy chỉnh của mình. Làm cách nào để thay đổi hình ảnh của thanh công cụ .Xin vui lòng trợ giúp tôi.Cách thay đổi hình ảnh thanh tiến trình trong android
11
A
Trả lời
19
Ở đây câu trả lời của tôi, tôi sử dụng hình ảnh của tôi trong thanh tiến trình android ..
<ProgressBar
android:layout_width="60dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:indeterminate="true"
android:indeterminateDrawable="@drawable/my_progress_indeterminate" />
my_progress_indeterminate.xml:
<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/animation"
android:pivotX="50%"
android:pivotY="50%"/>
animation.xml:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/load" android:duration="50" />
<item android:drawable="@drawable/load" android:duration="50" />
<item android:drawable="@drawable/load" android:duration="50" />
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/load"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="330"
android:toDegrees="360"
android:repeatCount="1" />
</animation-list>
đau lớn đối với tôi cũng . câu trả lời được yêu cầu. –