我正在尝试使用这个精美项目中的拖放功能: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';
类似地 for'drag_scroll_start'
和'drag_start_mode'
.
我想在更一般的层面上了解我在这里做错了什么。如果有人能给我使用这个库的具体帮助,我也会很感激。