我正在使用循环进度条,来自here
的来源我在底层文字的填充方面存在一些问题,正如您在提供的屏幕截图中看到的那样,它没有显示完整但是减少了一半。
我查看了源代码,但找不到底部文字的填充选项,是否有人可以提供帮助?
.xml文件:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_verbr"
android:layout_width="match_parent"
android:layout_height="220dp"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginTop="16dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linverbr2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.github.lzyzsd.circleprogress.ArcProgress
android:id="@+id/arc_progress"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="50dp"
android:background="#E8EBED"
custom:arc_progress="58"
custom:arc_bottom_text="VERBRUIK"/>
<com.github.lzyzsd.circleprogress.ArcProgress
android:id="@+id/arc_progress2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="50dp"
android:background="#E8EBED"
custom:arc_progress="55"
custom:arc_bottom_text="DATA"/>
</LinearLayout>
</android.support.v7.widget.CardView>