了解自定义程序包的XML属性

时间:2013-01-27 06:07:54

标签: android android-xml android-2.1-eclair

我正在尝试使用此精美项目中的拖放功能:https://github.com/bauerca/drag-sort-listview/

首先,我使用the instructions on GitHub添加了库。

其次,我正在尝试使用the XML declaration。这是我的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'

我想在更一般的层面上理解我在这里做错了什么。如果有人能为我提供使用这个库的具体帮助,我也会很感激。

1 个答案:

答案 0 :(得分: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"/>

for reference