Error inflating class出现报错

在填充布局时R.layout.dialog_item里面含有theme时报错Error inflating class

LayoutInflater inflater = LayoutInflater.from(mContext);
 View  view = inflater.inflate(R.layout.dialog_item, null);

被布局里面有theme,需要在对应的只需AndroidManifest加入,activity中加入theme

    <activity
            android:name=".MyActivity"
            android:theme="@style/SampleTheme.Light"/>

这样就可以解决了

猜你喜欢

转载自blog.csdn.net/weixin_44232136/article/details/123909869