gpt4 book ai didi

java - 如何将字符串 "R.drawable.someimage"更改为 id?

转载 作者:行者123 更新时间:2023-11-30 02:38:58 25 4
gpt4 key购买 nike

String path = "R.drawable.pic_" + 4;
imageOfPages.setImageResource(path);

但它需要 id 而不是 String。

最佳答案

你可以使用

 int id = getResources().getIdentifier("pic_" + 4, "drawable", getPackageName());
if (id > 0) {

}

来自文档:

 Return a resource identifier for the given resource name.

关于java - 如何将字符串 "R.drawable.someimage"更改为 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26055437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com