CommonsWare,我的Touchlist出现了一些问题。在sperate项目中启动Demo不是问题。但是当我尝试在我的现有项目中导入文件时,在我声明你的TouchListView的xml文件中它说:
错误:在'it.sec'包中找不到属性'normal_height'的资源标识符 - 错误:未在包中找到属性“expanded_height”的资源标识符 'it.sec' - 错误:在'it.sec'包中找不到属性'grabber'的资源标识符 - 错误:在'it.sec'包中找不到属性'remove_mode'的资源标识符
有人知道我该做什么吗? 提前致谢
SMAU
答案 0 :(得分:2)
当您创建自定义布局时,请使用以下内容(并且不要忘记将“YOUR_APPLICATION_PACKAGE_NAME”更改为您的真实包名: - )
<com.commonsware.cwac.tlv.TouchListView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tlv="http://schemas.android.com/apk/res/YOUR_APPLICATION_PACKAGE_NAME"
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
tlv:normal_height="64dip"
tlv:grabber="@+id/icon"
tlv:remove_mode="slideRight"
/>