关于android-support-v7-appcompat.jar的引用.这个不单纯的把jar复制到项目lib目录下的,不然就会报一堆主题找不到的2b问题, 正确方法例如以下: 1.找到android sdk文件夹/extras/android/suppor/v7/appcompat(没有的去sdk manager里下),然后在eclipse里面导入这个project,假设libs文件夹下没有android-support-v7-appcompat.jar和android-support-v4…
If you are looking for the solution in Android Studio : Right click on your app Open Module Settings Select Dependencies tab Click on green + symbol which is on the right side Select Library Dependency Choose appcompat-v7 from list…
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文件,输入  …
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文件,输入  …
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.…
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…
error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 这个错误表明缺少Theme.AppCompat.Light这个主题,而这个主题在appcompat-v7里面,所以要解决这个问题,先下载一个appcompat-v7库,再import. import以后,再把该库添加到出错的工程中.步骤: (1)右键单击项目,选择Proper…
No resource found that matches the given name 'Theme.AppCompat.Light 的完美解决方案 首先这个问题的产生是由于缺少Theme.AppCompat.Light这个主题产生的,而这个主题 的是存在于android\support\appcompat-v7支持库中的,注意不是jar包. No resource found that matches the given name 'Theme.AppCompat.Light 的完美解决方…
一.概述 近期刚接手了一个项目,开发工具为eclipse,由于版本较低,且考虑到如果转android studio项目的话,会其他人的维护带来困难,所以想着还是维护项目原来的开发环境吧. 但是导入项目后,始终发现缺少v7包和v4包. 网上查找后,看到有一篇文章介绍到: support v4能到导入在sdk中的相应jar包,而support v6不行. 起初按照文章介绍一步一步照做. 通过导入sdk目录下的support-v7包(copy to workspace),然后设置成is library…
创建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…
error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'.,appcompatv7 error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 这个错误表明缺少Theme.…
style文件中的Theme.AppCompat.Light报错,Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light',最后找到原因,是因为Android兼容包appcompat-v7没有与该项目存在于同一workspace. 报出如下 android-support-v7-appcompat 库引用错误的问题: 经过一番来回实验以后才发现原来…
一.问题 今天准备使用v7包中的ToolBar来用,但是在styles.xml中引入Theme.AppCompat.Light的时候,报错“no resource found that matches the given name 'android:Theme.AppCompat.Light'”. 二.解决 1.首先搜索了对应的报错,有很多回答需要导入android-support-v7-appcompat包,引入了几次,还是没有效果.终于功夫不负有心人,偶然看到一个博客中提到,需要将工程和an…
关于为何出现No resource found that matches the given name ‘Theme.AppCompat.Light’的原因 这边博客已经写的很清楚了 大家可以参考一下 http://www.jianshu.com/p/6ad7864e005e 在解决该异常时遇到了一些问题在这里补充一下 1.eclipse的SDK manager没有android support library  网上给出的解决方案都是利用更换镜像源来解决的,可是现在baidu能找到的镜像中都不…
转载:http://www.360doc.com/content/15/0316/15/9200790_455576135.shtml 由于我在配置安卓环境时也碰到了类似问题,用这篇博客解决了主要问题,我在本文尾部写了另一个问题的解决办法 微信分享:   No resource found that matches the given name 'Theme.AppCompat.Light 的完美解决方案 ╰╮Hana╭ 发表于 2014-9-30 18:35:37 浏览(262527) 本…
编译或运行时可能会出现错误: Error:Error retrieving parent for item: No resource found that matches the given name “Theme.AppCompat.Light”   这个问题我在刚开始写“HelloWorld”时就遇到,以为是API版本太高,下载了常用的API 19.17……一系列的,后来还是有问题.就上网查了很多,遇到几篇不错的文章,记录下来,方便以后查看. No resource found that m…
使用adt开发新建一个Android app.选择支持的SDK版本号假设小于11(Android3.0)就会报例如以下错误. error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'. 官网给出的答案是: https://developer.android.com/tools/support-library/setup.html#ad…
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…
eclipse在新建andorid工程的时候出现找不到AppCompat.Light主题的问题,这是因为缺少支持低版本的v7包所致, 这个不是jar包,在sdk的extras->andorid->support中找不到v7支持包,打开SDK Manager,重新下载这个文件 如果下载v7 失败那么直接上网下载一个新的v7包放到该目录下重写打开eclipse就好了 下载地址:http://pan.baidu.com/s/1jHAIKsQ 另外打开已经存在的工程可以导入支持包具体: http://…
一.stsckoverflow http://stackoverflow.com/questions/17870881/cant-find-theme-appcompat-light-for-new-android-actionbar-support Solution 1: AppCompat is a library project. You need to reference the library project in your android project. Check the top…
关于minSdkVersion="8" 升级后,又不想用 appcompat_v7包, 那么appcompat_v7主题"Theme.AppCompat.Light"等不存在,,会产生编译错误, 方案: 找到 高级版本 对应 的主题就可. 下面以升级 到14为例. 原来作用 Theme.AppCompat.Light 的替换成@android:style/Theme.Holo.Light就可. <!-- <style name="AppBase…
http://www.jianshu.com/p/6ad7864e005e 先来看这样一个错误: No resource found that matches the given name '@style/Theme.AppCompat.Light' 对于这个错误,相信大部分Android开发者都遇到过,可能很多朋友通过百度或者Google已经解决了这个问题,但是网上大部分都只给出了解决方法. 正所谓知其然,知其所以然,本文将从此问题出发,深入分析探讨导致此问题的原因.由其衍生出来的一系列问题及…
错误描述为:java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 起因:我想在Manifest中设置我的activity全屏,代码如下: <activity android:name=".MainActivity" android:theme="@android:style/Theme.NoTitleBar.…
android的一个小问题: Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 法一: 当在AndroidManifest.xml文件的application的节点设置了属性: android:theme="@android:style/Theme.NoTitleBar 而Activity继承了ActionB…
android的一个小问题: Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 法一: 当在AndroidManifest.xml文件的application的节点设置了属性: android:theme="@android:style/Theme.NoTitleBar 而Activity继承了ActionB…
#1.错误描述 今天,想实现Activity不显示标题栏的效果,在项目的AndroidManifest.xml文件,对相应的Activity添加属性 android:theme="@android:style/Theme.NoTitleBar" 具体代码如下: <activity android:name=".module.view.activity.KuwoMusicPlayActivity" android:theme="@android:sty…
当我的MainActivity继承自v7包中的ActionBarActivity或者AppCompatActivity时,如果在style.xml文件中指定MainActivity所使用的样式如下: <style name="AppTheme" parent="android:Theme.Material.NoActionBar"> <!-- 5.0开始,可以在Style.xml文件中统一配置App的样式 --> <!-- 状态栏的颜色…
配置: 中设置theme为 <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:theme="@android:style/Theme.Light.NoTitleBar" android:label="@string/app_name" > 报错信息: 09-20 10:31:58.185 1392-1…
You need to use a Theme.AppCompat theme (or descendant) with this activity 问题解决 问题代码 void initCommitDialog(String message) { mCommitDialog = new AlertDialog.Builder(context).create(); mCommitDialog.setCanceledOnTouchOutside(false); mCommitDialog.show…
V7包中的Theme.AppCompat主题系列中并没有全屏样式,这个是为什么,只有作者知道…… 解决办法: 自定义主题 <style name="Theme.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light"> <item name="windowNoTitle">true</item> <item…