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.
我有一个 Android 库项目,我想使用可绘制资源。我该怎么做呢?
Bitmap fr = BitmapFactory.decodeResource(null, R.drawable.fr)不起作用,因为我需要替换null为Resources,由 检索getResources()。但是,由于我的图书馆项目有或没有活动,因此没有getResources()方法,我似乎无法使用这些资源。在没有活动的情况下使用资源的任何解决方法或解决方案?(不过,我宁愿不硬编码文件路径。)
Bitmap fr = BitmapFactory.decodeResource(null, R.drawable.fr)
null
Resources
getResources()
如果可以将 Context 对象传递给函数,则可以使用
context.getResources()