我想在android studio中运行时映像。
在那种情况下,eclipse提供了该代码。我在imagename中传递图像名称,然后在drawable中获取图像。
companyLogo.setImageResource(getResourse.getIdentifier
("com.example.moneymanagement:drawable/"+imagename,null,null));
如何在android studio中找到那个案例..这个代码在android studio中没有被接受。
答案 0 :(得分:0)
你可以使用图书馆来使这更容易,毕加索是一个很好的:http://square.github.io/picasso/ 它会自动在后台加载图像并对其进行缓存以优化网络调用。
答案 1 :(得分:0)
在我的情况下,此代码工作正常,请检查项目中的包名称。因为如果包名错了,则找不到drawable。
companyLogo.setImageResource(getResourse.getIdentifier
("com.example.braingame:drawable/"+imagename,null,null));