Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在可绘制文件夹中绘制存储应用程序图标?我想在列表视图中的应用程序名称旁边显示应用程序图标。
我知道有一种获取图标的方法,但我不太确定如何存储该图标,以便以后可以使用它。
应用程序图标应该已经存储在可绘制文件夹中(实际上最佳做法是在每个密度可绘制文件夹中存储一个)
您应该能够在运行时引用它,就像使用任何其他可绘制对象R.drawable.ic_launcher或您给文件提供的任何名称(如果不是)一样ic_launcher
R.drawable.ic_launcher
ic_launcher
所以把它放到 ImageView 你可以做类似的事情
iv.setImageResource(R.drawable.ic_launcher);