使用自定义进度条android

时间:2015-12-24 06:20:03

标签: android progress-bar

我使用了一个用于Android自定义进度条的库并添加了:

xmlns:custom="http://schemas.android.com/apk/res-auto"  

我的LinearLayout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:custom="http://schemas.android.com/apk/res-auto"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="120dp"
        android:background="#F5F5F5">

我用过:

  <com.github.lzyzsd.circleprogress.ArcProgress
    android:layout_alignParentRight="true"
    android:id="@+id/arc_progress"
    android:layout_width="96dp"
    android:layout_height="96dp"
    android:layout_gravity="center_vertical"
    android:gravity="center_vertical"
    android:background="@android:color/transparent"
    custom:arc_finished_color="#214193"
    custom:arc_unfinished_color="#F2EDFF"
    custom:arc_max="99"
    custom:arc_bottom_text="Дист."
    custom:arc_suffix_text="км"/>

但是当我编译项目时返回错误:

android.view.InflateException: Binary XML file line #65: Error inflating class com.github.lzyzsd.circleprogress.DonutProgress

0 个答案:

没有答案