我通过从其服务访问 applicationInfo 并通过 packageManager 获取资源来访问另一个 APK 的布局。如果在布局中只指定了 textView 和 Buttons,它就可以正常工作。Resource not found Exception
但如果在访问的布局中使用了任何可绘制资源,则会抛出。
这是我访问布局的代码
ApplicationInfo info = packageManager.getApplicationInfo( packageName, 0 );
Resources res = packageManager.getResourcesForApplication( info );
XmlResourceParser xres = res.getLayout( 0x7f030000 );