The key must be an application-specific resource id

后端 未结 10 1412
时光说笑
时光说笑 2020-11-29 18:11

Why do I get this Exception?

05-18 20:29:38.044: ERROR/AndroidRuntime(5453): java.lang.IllegalArgumentException: The key must be an application-specific reso         


        
相关标签:
10条回答
  • 2020-11-29 18:20

    I've used viewHolder.itemTitleTextView.getId(). But you can also declare in your resources: <item type="id" name="conversation_thread_id"/>

    0 讨论(0)
  • 2020-11-29 18:22

    I'm a little late to the party but I stumbled on this problem myself today and thought I'd give an answer as well. This answer will be a bit of a compilation of the other answers, but with a twist. First of all, the id, as has been pointed out by others, can NOT be a constant defined in your code (such as private static final int MYID = 123) or any other int that you define as a field somewhere.

    The id has to be a precompiled unique id, just like the ones you get for strings that you put in values/strings.xml (ie R.string.mystring). Refer to http://developer.android.com/guide/topics/resources/available-resources.html and http://developer.android.com/guide/topics/resources/more-resources.html for more information.

    My suggestion is that you create a new file called values/tags.xml and write:

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

    I think it's better to create a separate file instead of putting it in strings.xml as EtienneSky suggested.

    0 讨论(0)
  • 2020-11-29 18:23

    This works for me:

    setTag(0xffffffff,objContact.onlineid);
    
    0 讨论(0)
  • 2020-11-29 18:24

    The reason you're not able to use setTag(int, Object) is because android require a pre-compiled unique id in the 'int' argument.

    Try creating two unique entry in String.xml xml say, "firstname" & "secondname" & use them as below

    imageView.setTag(R.string.firstname, "Abhishek");
    imageView.setTag(R.string.lastname, "Gondalia");
    
    0 讨论(0)
  • 2020-11-29 18:25
    private static final int TAG_ONLINE_ID = 1 + 2 << 24;
    

    should work. More info from ceph3us:

    The specified key should be an id declared in the resources of the application to ensure it is unique Keys identified as belonging to the Android framework or not associated with any package will cause an IllegalArgumentException to be thrown.

    from source:

    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);
    }
    
    0 讨论(0)
  • 2020-11-29 18:29

    you can use this :

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

    for uniqness application-specific resource id

    0 讨论(0)
提交回复
热议问题