密钥必须是特定于应用程序的资源 ID

为什么我得到这个例外?

05-18 20:29:38.044: ERROR/AndroidRuntime(5453): java.lang.IllegalArgumentException: The key must be an application-specific resource id.
05-18 20:29:38.044: ERROR/AndroidRuntime(5453):     at android.view.View.setTag(View.java:7704)
05-18 20:29:38.044: ERROR/AndroidRuntime(5453):     at com.mypkg.viewP.inflateRow(viewP.java:518)

问题在于:

((Button) row.findViewById(R.id.btnPickContact)).setTag(TAG_ONLINE_ID,objContact.onlineid);

我把它定义为:

private static final int TAG_ONLINE_ID = 1;
66488 次浏览

标记 id 必须是唯一的,因此它希望它是在资源文件中创建的 id,以保证惟一性。

如果视图只包含一个标记,那么可以这样做

setTag(objContact.onlineid);

不能使用 setTag (int,Object)的原因是 android 需要在“ int”参数中预编译的唯一 id。

尝试在 String.xml 中创建两个惟一的条目,比如“ firstname”和“ second name”,并按照下面的方式使用它们

imageView.setTag(R.string.firstname, "Abhishek");
imageView.setTag(R.string.lastname, "Gondalia");

我参加聚会有点晚了,但是我今天碰巧发现了这个问题,我想我也应该给出一个答案。这个答案将有点像其他答案的汇编,但是有点扭曲。首先,正如其他人指出的那样,id 不能是在代码中定义的常量(比如 private static final int MYID = 123) ,也不能是在其他地方定义为字段的任何 int。

Id 必须是预编译的唯一 id,就像您为放入值/strings.xml (即 R.string.mystring)中的字符串获得的 id 一样。有关详细信息,请参阅 http://developer.android.com/guide/topics/resources/available-resources.htmlhttp://developer.android.com/guide/topics/resources/more-resources.html

我的建议是,创建一个名为 value/tags.xml 的新文件,然后编写:

    <resources xmlns:android="http://schemas.android.com/apk/res/android">
<item name="TAG_ONLINE_ID" type="id"/>
</resources>

我认为最好创建一个单独的文件,而不是像 EtienneSky 建议的那样将其放在 strings.xml 中。

private static final int TAG_ONLINE_ID = 1 + 2 << 24;

应该可以。来自 Ceph3us的更多信息:

属性的资源中声明的 id 应用程序,以确保它是唯一的密钥被识别为属于 Android 框架或与任何软件包无关都会导致 将引发的异常。

来源:

public void setTag(int key, final Object tag) {
// If the package id is 0x00 or 0x01, it's either an undefined package
// or a framework id
if ((key >>> 24) < 2) {
throw new IllegalArgumentException("The key must be an application-specific "
+ "resource id.");
}


setKeyedTag(key, tag);
}

我已经使用了 viewHolder.itemTitleTextView.getId()。但是你也可以在你的资源中声明: <item type="id" name="conversation_thread_id"/>

这个可以..。

如果类中只有1个 setTag,那么可以使用顶部声明的任何 int,也许是 static final。

当你有两个或者更多的 setTag,并且有不同的键时,问题就来了。 我的意思是:

public static final int KEY_1 = 1;
public static final int KEY_2 = 2;
...
setTag(KEY_1, VALUE_1)
setTag(KEY_2, VALUE_2)
...

这种情况是错误的,然后需要添加一个名为 maybe ids.xml 的值文件,具体如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="resourceDrawable" />
<item type="id" name="imageURI" />
</resources>

然后,在你的课堂上,打电话:

 ...
setTag(R.id.resourceDrawable, VALUE_1)
setTag(R.id.imageURI, VALUE_2)
...

这对我有用:

setTag(0xffffffff,objContact.onlineid);

之所以要用 id 保存值,是因为您想在这个标记中覆盖多个值,对吗?
这里有一个更简单的解决方案:
假设您想将两个值(String)保存到这个标记中: “ firstname”和“ lastname”。您可以将它们保存在一个字符串中,用分号分隔: < br/>

v.setTag(firstname + ";" + lastname);

然后把它们分成一个字符串数组:

String[] data = v.getTag().toString().split(";");
System.out.println(data[0]) //firstname
System.out.println(data[1]) //lastname

你可以用这个:

private static final int TAG_ONLINE_ID = View.generateViewId() + 2 << 24;

用于特定于应用程序的唯一性资源 ID

这里有一个对我有用的简单的解决办法:

int tagKey = "YourSimpleKey".hashCode();


myView.setTag(tagKey, "MyTagObject");

这里的重要线索是调用字符串上的 .hashCode();