搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
小小林熬夜学编程
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
【HarmonyOS】ArkUI - 自定义组件
2
spring boot 2.4.x 之前版本(对应spring-cloud-openfeign 3.0.0之前版本)feign请求异常逻辑
3
深度学习入门之初学之环境搭建及经验_深度学习环境搭建
4
Android 卫星通信计算方位角,仰角,极化角
5
macOS、Windows、Linux、Docker等各个平台通过ollama一键部署谷歌最新开源的gemma大模型,免费开源离线部署使用超越llama2、chatgpt4_google gemma软件 windows版本
6
springboot AOP防止表单重复提交_public boolean trylocknoexpire(string lockkey, str
7
【SQL性能优化】查询优化器是如何工作的?
8
【计算机视觉40例】案例38:驾驶员疲劳监测_计算机视觉40例——从入门到深度学习pdf下载
9
《详解:鸿蒙NEXT开发核心技术》
10
Life-Long SLAM大盘点 | 对全生命周期SLAM的汇总与思考发散
当前位置:
article
> 正文
error: Error retrieving parent for item: No resource found that matches the given name 'android:Wind
作者:小小林熬夜学编程 | 2024-03-12 08:16:52
赞
踩
error retrieving parent for item: no resource found that matches the giv
当你的androidAPI 由2.1版本更换成2.2版本时:
res/vavlues/styles.xml中使用的android:WindowTitle会报以下异常,
error: Error retrieving parent for item: No resource found that matches the given name 'android:WindowTitle'.
从而导致我们的程序无法编译通过。
原因:
android2.1中的某些API(包括类方法或者XML属性)更换成android2.2时,它们的路径已经发生了改变,从而导致编译器无法找到它们,所以编译无法通过。
解决方案:
1. 在Eclipse中打开任意一个.java文件,输入
android.R.style.
这时你会看到一个提示列表,仔细看看,里面确实没由WindowTitle, 但是我们发现了一个TextAppearance_WindowTitle. 没错, 在android2.2中,它已经被改成了
TextAppearance_WindowTitle
。
2. 回到报错的res/values/styles.xml,
将<style name="XWindowTitle" parent="">
相应地修改成
<style name="XWindowTitle" parent="
android:TextAppearance.WindowTitle
">
注意:这里你也许会注意到 .java文件中的XML属性,与 .xml文件中XML属性很是类似。
这不是巧合,android官方文档规定:
java文件中的
android.R.style.
TextAppearance_WindowTitle
对应
xml文件中的
android:TextAppearance.WindowTitle。 “下划线”与“点”时对应关系。
关于Styles and Themes 之间的关系,请参考官方网站
http://developer.android.com/guide/topics/ui/themes.html
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/223178
推荐阅读
article
git
秘钥过期 ERROR:
Your
SSH
key
has
expired
_your
ssh
k...
Github添加秘钥(记得粘贴时带上开头的
ssh
-rsa不需要去掉)->过期时间设置久一点,添加完成就ok了,回到项目...
赞
踩
article
Android
Intent
传递数据过大问题...
通过
Intent
传递或者返回的数据是存放在一个叫做Binder transaction buffer的缓存区,这个缓冲区...
赞
踩
article
Android
系统
稳定性
-
ANR
(二)...
2019独角兽企业重金招聘Python工程师标准>>> ..._printcurrentstat...
赞
踩
article
Android
window
type
图层分析...
android系统中提供了三类窗口的图层,包括应用级窗口、子窗口、系统级窗口,每一类窗口都已经定义了多个图层TYPE。根...
赞
踩
article
(五十二)
Android
anr
分析步骤总结_如何知道
应用
anr
发生
在
哪个
线程
?...
前言:最近经手了比较多的
anr
问题,声明经手不是解决,只是从log上推断造成
anr
的原因,以此作为根据转交给对应的人来处...
赞
踩
article
【
原创
】
Android
系统
稳定性
-
ANR
(
二)...
文章都为
原创
,转载请注明出处,未经允许而盗用者追究法律责任。 很久之前写的了,留着有点浪费,共享之。编写者:李文栋P.S...
赞
踩
article
Android
ANR 问题第二弹------
Input
超时实战问题解析上_
input
dispat...
在前面的
Android
ANR 问题第二弹一文中,我们简诉了
Android
Input
超时的原因,我们了解到系统Inpu...
赞
踩
article
Android
产生
ANR
后
的
Trace
文件
的
解析_
android
trace
文件分析...
第一个框中第一二行说明了发生
ANR
的
进程ID,名称和时间第三个框中“main” prio=5 tid=1 Native说...
赞
踩
article
Android
ANR
日志分析指南...
当你的项目越做越复杂,或者你的用户达到某个数量级的时候,你的代码不小心出现细小的问题,你会收到各种各样的bug,其中AN...
赞
踩
article
Android
8.0
ActivityManagerService
启动流程_activityma...
ActivityManagerService
(以下简称为 AMS)是
Android
中最核心的系统服务之一,我认为 A...
赞
踩
article
Android
中
service
详解_
activitymanager
:
unable
to
sta...
上一次对于broadcast 的机制进行了详细的解析,见博文 android 中的 Broadcast 机制详解 ,本篇...
赞
踩
article
【Andr
o
id】
ANR
异常分析_
activitymanager
: reas
o
n:
input
d...
ANR
异常分析_
activitymanager
: reas
o
n:
input
dispatching
timed
o
ut...
赞
踩
article
Android
ANR
视角
InputDispatcher
...
作者:王小二前言有好多人向我咨询过Input
ANR
问题,说实话,我也是一直无法彻底的解释清楚,我下决心要彻底搞懂这块知...
赞
踩
article
Android
开发-
Android
ANR
原因分析_
input
dispatching
timed
...
ANR
,全称是Application Not Responding,即应用程序无响应(不是Activity无响应)。当A...
赞
踩
article
Android
ANR
详解_anr
postandwait
...
ANR
简介
ANR
,是“Application Not Responding”的缩写,即“应用程序无响应”。在Androi...
赞
踩
article
Andro
i
d
B
i
nder
调用栈_#00 pc
000000000006f6ec
/
system
...
从 andro
i
d.os.
B
i
nder
Proxy.transact 方法起手,到 andro
i
d::IPCThreadS...
赞
踩
article
Android
-
ANR
总结原理_reason:
input
dispatching
timed ou...
一:什么是
ANR
ANR
:Application Not Responding,即应用程序无响应一般在
ANR
的时候会弹出一...
赞
踩
article
Android
ANR问题 --
Input
超时实战问题解析上_
input
dispatching
...
在前面我们简诉了
Android
Input
超时的原因,我们了解到系统
Input
系统分发
Input
的事件时如果有5s超时会...
赞
踩
article
Android
ANR
分析流程_
waitinginmainsignalcatcherloop
...
一:什么是
ANR
ANR
:Application Not Responding,即应用无响应,如下图 二:
ANR
的类型AN...
赞
踩
article
Android Log分析
ANR
简单小结_
input
dispatching
timed
out (...
搜索关键字:【last
ANR
】【InputDispatcher】【wm_on_】【ActivityManager: A...
赞
踩
相关标签
git
ssh
android
移动开发
操作系统
运维
adb
ANR
稳定性
anr
input dispatcher timeout
android8.0
stability
java
android studio
ui
Android
service
startService
startForegroundService