2013-08-27 84 views
2

你好,我進口jazzylistview樣本項目,我得到的佈局文件中的以下錯誤:錯誤導入時jazzylistview樣本項目

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res/com.twotoasters.jazzylistview.sample" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@color/background" 
tools:context=".MainActivity" > 

<com.twotoasters.jazzylistview 
    android:id="@id/android:list" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:divider="@null" 
    app:effect="helix" 
    app:only_animate_new_items="false" 
    app:only_animate_fling="false" 
    app:max_velocity="0" /> 

</FrameLayout> 

我得到com.twotoasters.jazzylistview線以下錯誤:

Multiple annotations found at this line: 
- error: No resource identifier found for attribute 'only_animate_fling' in package 
'com.twotoasters.jazzylistview.sample' 
- error: No resource identifier found for attribute 'max_velocity' in package 'com.twotoasters.jazzylistview.sample' 
- error: No resource identifier found for attribute 'effect' in package 'com.twotoasters.jazzylistview.sample' 
- error: No resource identifier found for attribute 'only_animate_new_items' in package 
'com.twotoasters.jazzylistview.sample' 

請幫我,我該怎麼辦?的應用程序= 「http://schemas.android.com/apk/res/com.twotoasters.jazzylistview.sample」
這裏,而不是使用/com.twotoasters.jazzylistview.sample使用你的包:

+0

您的日誌清楚地表明,您錯過了上述屬性。您的示例應用程序必須包含名爲effect,only_animate_new_items,only_animate_new_items和only_animate_fling的自定義屬性。 – Rekha

+0

屬性被傳遞給我的類的構造函數,但仍然給我錯誤。 – Qurashi

+0

解決了這個問題。 http://stackoverflow.com/questions/5819369/error-no-resource-identifier-found-for-attribute-adsize-in-package-com-googl – Qurashi

回答

1

的xmlns名稱。