Theme.AppCompat.Light的解决方法

style name=”AppBaseTheme” parent=”Theme.AppCompat.Light”

改为

改为

style name=”AppBaseTheme” parent=”android:Theme.Light”

同理,将

style name=”AppBaseTheme” parent=”Theme.AppCompat.Light.DarkActionBar”

改为

style name=”AppBaseTheme” parent=”android:Theme.Holo.Light.DarkActionBar”

原文地址:https://www.cnblogs.com/dubo-/p/8986317.html

时间: 2024-10-09 21:12:12

Theme.AppCompat.Light的解决方法的相关文章

安卓开发中Theme.AppCompat.Light的解决方法

styles.xml中<style name="AppBaseTheme" parent="Theme.AppCompat.Light">提示如下错误,这是版本问题. error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 解决方法: 在Eclipse中打开任意一个.java文件,输入  

Android Theme.AppCompat.Light的解决方法

styles.xml中<style name="AppBaseTheme" parent="Theme.AppCompat.Light">提示如下错误: error: Error retrieving parent for item: No resource found that matches the given name  'Theme.AppCompat.Light'. 解决方法: 将 <style name="AppBaseThe

【Android】Theme.AppCompat.Light 问题

Android 开发的 styles.xml 文件中遇到了这个问题: <style name="AppBaseTheme" parent="Theme.AppCompat.Light"> <!-- Theme customizations available in newer API levels can go in res/values-vXX/styles.xml, while customizations related to backwar

解决IDEA下运行android项目 No resource found that matches the given name &#39;Theme.AppCompat.Light&#39;.

1.右击项目选择 解决IDEA下运行android项目 No resource found that matches the given name 'Theme.AppCompat.Light'.

创建Android项目时出错——No resource found that matches the given name &#39;Theme.AppCompat.Light&#39;

创建Android项目时出错,error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 问题描述: 创建一个Android应用项目时,需指定其适用的SDK版本,默认如下图: 最低适用版本为:API 8: Android 2.2 (Froyo) 目标版本为:API 21: Android 4.X (L Preview) 编译版本为:A

android中出现Error retrieving parent for item: No resource found that matches the Theme.AppCompat.Light

styles.xml中<style name="AppBaseTheme" parent="Theme.AppCompat.Light">提示如下错误,这是版本问题. error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 解决方法: 在Eclipse中打开任意一个.java文件,输入  

[android] No resource found that matches the given name &#39;Theme.AppCompat.Light&#39;

在整合android过程中导入别人的项目出现下面的错误: <style name="AppBaseTheme" parent="Theme.AppCompat.Light"> error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 通过stackoverflow查到其解决方法,如下: 1.

创建android项目时,出现No resource found that matches the given name &#39;Theme.AppCompat.Light&#39;

这个错误会出现res文件夹有一个红色的叉叉 解决方法:  我们把我们创建的最低版本,改成android 4.0 这个问题就解决了 创建android项目时,出现No resource found that matches the given name 'Theme.AppCompat.Light'

No resource found that matches the given name &#39;Theme.AppCompat.Light.DarkActionBar&#39;.

出现这种情况可有2种方法解决: 1方案:clean项目,可能解决问题 2方案:1方案未解决问题,android 版本过低,右键你的项目->Properties->Android ,选择API level 11 ,或者更高的,同时添加appcompat_v7库(必须在bulid path添加android-support-v4.jar) No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionB