Is it possible to access resources in another APK without using content providers?

后端 未结 3 1589
难免孤独
难免孤独 2020-12-13 00:49

I thought that it is impossible to access resources contained in other APK unless content providers are used. However, I stumbled upon an app called Better Keyboard. It uses

3条回答
  •  -上瘾入骨i
    2020-12-13 01:48

    I believe you're looking for

    Resources res = mPackageManager.getResourcesForApplication("org.example.foo");

    http://developer.android.com/reference/android/content/pm/PackageManager.html#getResourcesForApplication%28java.lang.String%29

提交回复
热议问题