Android setTag方法的key问题解决办法
android在设计view类时,为了能储存一些辅助信息,设计一个一个settag/gettag的方法。这让我想起在winform设计中每个control同样存在一个tag。
今天要说的是我最近学习android遇见的settag的坑。一般情况下我们只需要使用唯一参数的settag方法。但有时我们需要存储多个数据,所以这个时候我们就需要使用带key的重载。
文档是描述:“ the specified key should be an id declared in the resources of the application to ensure it is unique (see the id resource type). keys identified as belonging to the android framework or not associated with any package will cause an illegalargumentexceptionto be thrown.”
这里说明必须保证key的唯一,但是如果我们使用java常量定义key(private static final int tag_id = 1;)这样你任然会遇见如下错误:
java.lang.illegalargumentexception: the key must be an application-specific resource id
正确的解决方案是:
在res/values/strings.xml中定义这个key常量,如下:
<resources> <item type="id" name="tag_first"></item> <item type="id" name="tag_second"></item> </resources>
使用如下:
imageview.settag(r.id.tag_first, "hello"); imageview.settag(r.id.tag_second, "success");
以上就是对android settag方法的key问题的解决办法,谢谢大家对本站的支持!
上一篇: IP查询系统的异步回调案例
下一篇: java随机生成8位数授权码的实例
推荐阅读
-
Android setTag方法的key问题解决办法
-
Android Splash界面白屏、黑屏问题的解决方法
-
Android程序启动时出现黑屏问题的解决方法
-
Android中Fragment多层嵌套时onActivityResult无法正确回调问题的解决方法
-
Android setTag方法的key问题解决办法
-
Android Splash界面白屏、黑屏问题的解决方法
-
Android中Fragment多层嵌套时onActivityResult无法正确回调问题的解决方法
-
Android App中ViewPager所带来的滑动冲突问题解决方法
-
Android读取本地json文件的方法(解决显示乱码问题)
-
Android程序报错程序包org.apache.http不存在问题的解决方法