11

このすばらしいプロジェクトのドラッグアンドドロップ機能を使用しようとしています:https ://github.com/bauerca/drag-sort-listview/

まず、GitHubの手順を使用してライブラリを追加しました。

次に、 XML宣言を使用しようとしています。これは私のmain.xmlです:

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

    <include layout="@layout/header"/>

    <com.mobeta.android.dslv.DragSortListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:divider="#D9D9D9"
        android:dividerHeight="2dp"
        android:listSelector="@drawable/list_selector"
        dslv:drag_enabled="true"
        dslv:drag_scroll_start="0.33"
        dslv:drag_start_mode="onDown"/>
</LinearLayout>

しかし、Eclipseはこのエラーをスローしています:No resource identifier found for attribute 'drag_enabled' in package 'com.mobeta.android.dslv';同様に'drag_scroll_start''drag_start_mode'

ここで私が間違っていることをより一般的なレベルで理解したいと思います。そして、誰かがこのライブラリを使用するための具体的な助けを私に与えることができれば、私もそれをいただければ幸いです。

4

1 に答える 1

24

ライブラリのフルパスを指定するのではなく、ライブラリから属性を参照しているため、「res-auto」を指定してください。変更を確認してください。

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

<include layout="@layout/header"/>

<com.mobeta.android.dslv.DragSortListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="#D9D9D9"
    android:dividerHeight="2dp"
    android:listSelector="@drawable/list_selector"
    dslv:drag_enabled="true"
    dslv:drag_scroll_start="0.33"
    dslv:drag_start_mode="onDown"/>

参考のために

于 2013-01-27T06:34:18.657 に答える