2016-02-29 177 views
2

我使用下面庫:https://github.com/lzyzsd/CircleProgress自定義佈局XML綁定錯誤

我添加它到搖籃:

dependencies { 
    compile 'com.github.lzyzsd:circleprogress:[email protected]' 
} 

我把它添加到我的佈局XML:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:background="@color/bg_color" > 

     <LinearLayout 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" 
      android:paddingLeft="10dp" 
      android:paddingRight="10dp" > 

      <TextView 
       android:id="@+id/TextView01" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_marginTop="10dp" 
       android:text="@string/minutes20" 
       android:textColor="@color/main_color" 
       android:textSize="22dp" 
       android:textStyle="bold" > 
      </TextView> 

      <TextView 
       android:id="@+id/TextView01" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="@string/health_1" 
       android:textSize="16dp" 
       android:textStyle="bold" > 
      </TextView> 

      <FrameLayout 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:layout_gravity="center" 
       android:orientation="horizontal" > 

       <com.github.lzyzsd.circleprogress.CircleProgress 
        android:id="@+id/progressbar_1" 
        android:layout_marginLeft="50dp" 
        android:layout_width="100dp" 
        android:layout_height="100dp" 
        custom:circle_progress="20"/> 

我我得到一個錯誤:解析XML時出錯:未綁定前綴

我想我不知怎麼錯過了定義nam協商?

+0

此行添加到您的XML'的xmlns:定製=「http://schemas.android.com/ apk/res-auto「' – NamNH

回答

4

我想你錯過

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

root layout XML

添加引用take a look any demo file

+0

我應該在框架佈局中添加這個嗎? – tobias

+0

@tobias添加'root layout'。檢查我的參考鏈接 –

+1

作品就像一個魅力。我已經嘗試過這一行代碼,但沒有認識到「custom」是我需要的。 Thx – tobias