How to set integer tag to a widget in xml layout file?

后端 未结 4 591
天命终不由人
天命终不由人 2021-01-07 17:45

I have simple layout, but I can only set string tag. How to set integer tag?



        
4条回答
  •  半阙折子戏
    2021-01-07 18:37

    From the author's edit I attempted to use @integer/int2 to set the tag as an integer, but it still seems that getTag() is returning the tag as a String (at least in Jellybean). Integer.parseInt(String) can convert a String to an Integer and @integer/int2 can validate that your tag is a proper Integer. So if you want to put an Integer in a tag through XML that is probably the best route. Downside, since it uses parseInt it likely takes a little more time than having it stored as a int the whole time.

提交回复
热议问题