如何在 xml 布局文件中为小部件设置整数标签?
我有简单的布局,但我只能设置字符串标签。如何设置整数标签?
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="1"
android:src="@drawable/image" />
更新
我发现了如何在 xml 布局中设置整数标签。我们需要在任何 xml 资源文件中指定一个整型变量。看起来应该像这样:
res/values/value.xml:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<integer name="int1">15</integer>
<integer name="int2">1</integer>
</resources>
现在我们可以自由地使用“@integer/int1”或“@integer/int2”作为我们的 xml 小部件的标签,例如:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="@integer/int2"
android:src="@drawable/image" />
但是,就我而言,我首选以编程方式设置标签:)
I have simple layout, but I can only set string tag. How to set integer tag?
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="1"
android:src="@drawable/image" />
UPDATE
I found out how to set Integer tags in xml layout. We need to specify an integer variable in any xml resource file. That should look like that:
res/values/value.xml:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<integer name="int1">15</integer>
<integer name="int2">1</integer>
</resources>
And now we are free to use "@integer/int1" or "@integer/int2" as tags for our xml widgets, for example:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="@integer/int2"
android:src="@drawable/image" />
However, in my case I preferred to set tag programmatically :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在xml中只能设置String。但在代码中您可以使用
View.setTag(int value);
因为它需要 Object。要读取值,您需要将其转换为 Integerint value = (Integer)view.getTag();
In xml you can only set String. But in code you can use
View.setTag(int value);
because it takes Object. To read a value you need to cast it to Integerint value = (Integer)view.getTag();
根据作者的编辑,我尝试使用
@integer/int2
将标签设置为整数,但似乎getTag()
将标签作为返回>String
(至少在 Jellybean 中)。Integer.parseInt(String)
可以将String
转换为Integer
并且@integer/int2
可以验证您的标签是一个正确的Integer
。因此,如果您想通过 XML 将Integer
放入标记中,这可能是最佳途径。缺点是,由于它使用 parseInt ,因此可能比始终将其存储为 int 花费更多的时间。From the author's edit I attempted to use
@integer/int2
to set the tag as an integer, but it still seems thatgetTag()
is returning the tag as aString
(at least in Jellybean).Integer.parseInt(String)
can convert aString
to anInteger
and@integer/int2
can validate that your tag is a properInteger
. So if you want to put anInteger
in a tag through XML that is probably the best route. Downside, since it usesparseInt
it likely takes a little more time than having it stored as a int the whole time.我使用以下命令在 xml 中设置标签并稍后在代码中处理它:
I used the following to setup the tag in xml and handle it later in code:
为此视图提供一个包含字符串的标签,稍后使用
View.getTag()
检索或使用View.findViewWithTag()
搜索。必须是字符串值,使用
'\\;'
转义字符,例如'\\n'
或'\\uxxxx'
一个 unicode 字符。有关更多信息,请访问 android:tag
Supply a tag for this view containing a String, to be retrieved later with
View.getTag()
or searched for withView.findViewWithTag()
.Must be a string value, using
'\\;'
to escape characters such as'\\n'
or'\\uxxxx'
for a unicode character.For more information go to android:tag