Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Lig

来源:互联网 发布:linux系统安装qq 编辑:程序博客网 时间:2024/04/28 02:18
    In file res/values/styles.xml change the line:    <style name="AppBaseTheme" parent="android:Theme.Light">    to:    <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">    In file res/values-v11/styles.xml change the line:    <style name="AppBaseTheme" parent="android:Theme.Holo.Light">    to:    <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">    In file res/values-v14/styles.xml change the line:    <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">    to:    <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">

0 0