У меня есть progressbar_text TextView
:
<TextView
android:id="progressbar_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
и custom_animated_shape.xml как:
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="270"
android:toDegrees="270">
<shape
android:innerRadius="20dp"
android:innerRadiusRatio="2.5"
android:shape="ring"
android:thickness="5dp"
android:useLevel="true">
<gradient
android:angle="0"
android:endColor="@color/foo_color"
android:startColor="@color/foo_color"
android:type="sweep"
android:useLevel="false"/>
</shape>
</animated-rotate>
Установка как:
progressbar_text.setCompoundDrawablesRelativeWithIntrinsicBounds(R.drawable.custom_animated_shape, 0, 0, 0)
не будет работать
Есть ли способ установить круговой прогресс бар в качестве Left Drawable
на TextView
?