我最近试图将Tree-View-List-Android移植到我的项目中。我创建了一个名为com.dotnetideas.treeview的项目并添加了所有内容。我可以毫无问题地运行该演示。但是当我在另一个项目中使用它时,我在main_demo.xml中不断获得“在com.dotnetideas.treeview包中找不到属性'indicator_gravity'的资源标识符”。 这是xml的样子。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:treeView="http://schemas.android.com/apk/res/com.dotnetideas.treeview"
android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ListView android:layout_width="0dip" android:layout_height="0dip" android:scrollbars="vertical"
android:visibility="gone"> <!-- Just to test some attributes in IDE -->
</ListView>
<pl.polidea.treeview.TreeViewList android:id="@+id/mainTreeView" android:layout_width="fill_parent"
android:layout_height="fill_parent" treeView:indicator_gravity="right|center_vertical"
android:scrollbars="vertical" android:smoothScrollbar="true"/>
虽然我按照旧代码更改了
中的xml命名空间xmlns:treeView=http://schemas.android.com/apk/res/pl.polidea.treeview
到
xmlns:treeView=http://schemas.android.com/apk/res/com.dotnetideas.treeview.
它似乎不是有效的xml命名空间。
事实证明,名称空间必须是
xmlns:treeView="http://schemas.android.com/apk/res-auto"
如果我们引用作为图书馆项目。
来自stackoverflow的This answer也没有帮助。