singwhatiwanna / dynamic-load-apk

DL : dynamic load framework in android
http://blog.csdn.net/singwhatiwanna/article/details/40283117
Other
6.03k stars 2k forks source link

插件的服务中,xml中资源找不到 #162

Open mengfantao opened 6 years ago

mengfantao commented 6 years ago

已经重写了服务中的getAssets 和getResources 但是在加载布局文件时,有一些颜色资源找不到直接报解析布局文件错误 android.view.InflateException: Binary XML file line #2: Binary XML file line #2: Error inflating class Caused by: android.view.InflateException: Binary XML file line #2: Error inflating class

mengfantao commented 6 years ago

第二行是这样的 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ll_container" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/gamecat_color_00000000" android:orientation="horizontal"> 我把 android:background="@color/gamecat_color_00000000" 去掉就报下面行数错误了,这里就过去了,说明就是这里的资源引起的问题