2

こんにちは、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'

私を助けてください私は何をすべきですか?

4

1 に答える 1

1

xmlns:app="http://schemas.android.com/apk/res/com.twotoasters.jazzylistview.sample"
ここで/com.twotoasters.jazzylistview.sampleを使用する代わりに、パッケージ名を使用します。

于 2013-12-06T14:16:09.867 に答える