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.
在我的应用程序中,我在 hdpi-drawables 文件夹中有相当多的图形文件,它们需要成为列表活动中的图标。所以在我的ArrayAdapter中,我将值设置为setImageDrawable
所以,我需要迭代所有文件的方法,这些文件在我的资源中以从中获取名称和其他一些属性。有什么办法吗?
你可以用这个方法通过它的名字找到drawable id
int id = getResources().getIdentifier("name_of_resource", "drawable", getPackageName());