Binary XML file line #10: Error inflating class android.supp
发布时间:2020-12-16 08:21:08 所属栏目:百科 来源:网络整理
导读:崩溃日志 Caused by: android .view .InflateException : Binary XML file line #10: Error inflating class android.support.design.widget.TabLayout at android .view .LayoutInflater .createView (LayoutInflater .java : 637 ) at android .view .Layo
崩溃日志Caused by: android.view.InflateException: Binary XML file line #10: Error inflating class android.support.design.widget.TabLayout
at android.view.LayoutInflater.createView(LayoutInflater.java:637)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:747)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:810)
at android.view.LayoutInflater.inflate(LayoutInflater.java:508)
at android.view.LayoutInflater.inflate(LayoutInflater.java:418)
<此处省略>
Caused by: java.lang.IllegalArgumentException: You need to use a Theme.AppCompat theme (or descendant) with the design library.
at android.support.design.widget.ThemeUtils.checkAppCompatTheme(ThemeUtils.java:36)
<此处省略>
出现原因
解决办法
第一种不适用主题:
<activity android:name=".fragment.resource.InformationActivity" android:launchMode="singleTask" android:screenOrientation="portrait" android:windowSoftInputMode="adjustResize" />
第二种自定义主题必须使用Thme.AppCompat 或者继承自Theme.AppCompat:
<activity android:name=".fragment.resource.InformationActivity" android:launchMode="singleTask" android:screenOrientation="portrait" android:theme="@style/custom_style" android:windowSoftInputMode="adjustResize" />
更多内容访问:个人站点(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |