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';类似地 for'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 回答