在单独的 xml 中指定可绘制资源 id

发布于 2024-12-11 13:35:10 字数 260 浏览 0 评论 0原文

我有一个指定一组图像按钮名称的 xml 文件。另外,我想将图像资源 id 指定为 xml 节点的属性,如下所示:

<button name="close" resLocation="R.drawable.close" />

我正在解析代码中的 xml,我想使用 resLocation 属性为动态创建的按钮设置图像背景。由于 resLocation 是一个字符串,因此我无法直接转换为 Drawable 对象。我有办法解决吗?

I have an xml file that specifies a set of image button names. Also, I would like to specify the image resource id as an attribute of an xml node as shown below:

<button name="close" resLocation="R.drawable.close" />

I am parsing the xml in the code, I would like to set the image background for the dynamically created button using the resLocation attribute. Since resLocation is a string, I cannot convert to a Drawable object directly. Is there a way I can workaround?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

寻找一个思念的角度 2024-12-18 13:35:10

您可以使用 get getResources().getIdentifier

String myResourceId = "close"; // Parsed from XML in your case
getResources().getIdentifier(myResourceId, "drawable", "com.my.package.name");

这需要您的 XML 稍有不同:

<button name="close" resLocation="close" />

如果您需要在 XML 中保留 R.type.id 格式,那么您只需要解析出类型和id:

String myResourceId = "R.drawable.close";
String[] resourceParts = myResourceId.split("\\.");
getResources().getIdentifier(resourceParts[2], resourceParts[1], "com.my.package.name");

You can use get getResources().getIdentifier:

String myResourceId = "close"; // Parsed from XML in your case
getResources().getIdentifier(myResourceId, "drawable", "com.my.package.name");

This would require your XML to be a little different:

<button name="close" resLocation="close" />

If you need to keep the R.type.id format in your XML, then you would just need to parse out the type and id:

String myResourceId = "R.drawable.close";
String[] resourceParts = myResourceId.split("\\.");
getResources().getIdentifier(resourceParts[2], resourceParts[1], "com.my.package.name");
拥抱影子 2024-12-18 13:35:10

你可以试试

<button name="close" resLocation="@drawable/close" />

或者试试

ImageButton imgButton=new ImageButton(this);

imgButton.setImageResource(getResources().getDrawable(R.drawable.close));

You can try

<button name="close" resLocation="@drawable/close" />

or try

ImageButton imgButton=new ImageButton(this);

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