TouchListView 和拖放问题(公共软件)

发布于 2024-12-19 22:08:38 字数 348 浏览 0 评论 0原文

CommonsWare,我在使用您的 Touchlist 时遇到了一些问题。在单独的项目中启动演示没有任何问题。但是,当我尝试导入现有项目中的文件时,在声明 TouchListView 的 xml 文件中,它会显示以下内容:

错误:在包“it.sec”中找不到属性“normal_height”的资源标识符 - 错误:在包中找不到属性“expanded_height”的资源标识符 'it.sec' - 错误:在包“it.sec”中找不到属性“grabber”的资源标识符 - 错误:在包“it.sec”中找不到属性“remove_mode”的资源标识符

有人知道我要做什么吗? 预先感谢

sMau

CommonsWare, I got some problems with your Touchlist. Starting the Demo in a sperate project isnt any problem. But when i try to import the files in my exsisting project, in the xml file where i declare your TouchListView it says this:

error: No resource identifier found for attribute 'normal_height' in package 'it.sec'
- error: No resource identifier found for attribute 'expanded_height' in package
'it.sec'
- error: No resource identifier found for attribute 'grabber' in package 'it.sec'
- error: No resource identifier found for attribute 'remove_mode' in package 'it.sec'

Does anybody got an idea what ive to do?
Thanks in advance

sMau

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

禾厶谷欠 2024-12-26 22:08:38

当您创建自定义布局时,请使用类似的内容(并且不要忘记将“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"
/>

When you will create a custom layout use something like this (and don't forget to change "YOUR_APPLICATION_PACKAGE_NAME" to you real 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"
/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文