如何在 xml 布局文件中为小部件设置整数标签?

发布于 2025-01-04 23:18:36 字数 801 浏览 1 评论 0原文

我有简单的布局,但我只能设置字符串标签。如何设置整数标签?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

对你而言 2025-01-11 23:18:36

在xml中只能设置String。但在代码中您可以使用 View.setTag(int value); 因为它需要 Object。要读取值,您需要将其转换为 Integer int 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 Integer int value = (Integer)view.getTag();

赴月观长安 2025-01-11 23:18:36

根据作者的编辑,我尝试使用 @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 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.

茶色山野 2025-01-11 23:18:36

我使用以下命令在 xml 中设置标签并稍后在代码中处理它:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="item_tag">1</string>
</resources>

<!-- TextView with Tag -->
<TextView
android:id="@+id/item_with_tag"
android:tag="@string/item_tag"/>

// retrieve the tag
int itemTag = Integer.valueOf((String) textView.getTag()); // itemTag == 1

I used the following to setup the tag in xml and handle it later in code:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="item_tag">1</string>
</resources>

<!-- TextView with Tag -->
<TextView
android:id="@+id/item_with_tag"
android:tag="@string/item_tag"/>

// retrieve the tag
int itemTag = Integer.valueOf((String) textView.getTag()); // itemTag == 1
风透绣罗衣 2025-01-11 23:18:36

为此视图提供一个包含字符串的标签,稍后使用 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 with View.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文