Установка круговой ProgressBar как левого, прорисовываемого для TextView программно - PullRequest
0 голосов
/ 11 июля 2019

У меня есть 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?

1 Ответ

0 голосов
/ 11 июля 2019

Попробуйте код ниже, вы можете обернуть текстовое представление и индикатор выполнения в linearlayout.

 <LinearLayout
                android:id="@+id/progress_layout"
                android:layout_width="match_parent"
                android:layout_marginLeft="20dp"
                android:layout_marginTop="5dp"
                android:layout_height="20dp">
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="20dp"
                    android:textColor="#000"
                    android:textSize="12sp"
                    android:gravity="center_vertical"
                    android:text="Progress bar at right."/>
                <ProgressBar
                    android:layout_width="wrap_content"
                    android:layout_height="20dp"
                    style="@android:style/Widget.ProgressBar.Small"
                    android:layout_marginRight="5dp" />
            </LinearLayout>
...