本文介绍了R.styleable解决不了,为什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 resources.xml中位于文件direcotry的值/ 的,这就是
I have a resources.xml file located under direcotry values/ , That's
/values/resources.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="TheMissingTabWidget">
<attr name="android:divider" />
</declare-styleable>
</resources>
在我的Java code,当我试图通过 R.styleable.TheMissingTabWidget
来访问该资源时,Eclipse抱怨的设置样式不能得到解决或不是现场。为什么?为什么我不能访问这个资源? (我用的Android 2.1更新)。
In my java code, when I try to access this resource by R.styleable.TheMissingTabWidget
, eclipse complain that styleable cannot be resolved or is not a field. Why? Why I can not access this resource? (I am using android 2.1-updated).
推荐答案
PLZ让值/ attrs.xml
这样的资源
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="**com.admob.android.ads.AdView**"><--- where u want to use
<attr name="backgroundColor" format="color" />
<attr name="TextColor" format="color" />
<attr name="keywords" format="string" />
<attr name="refreshInterval" format="integer" />
</declare-styleable>
</resources>
这篇关于R.styleable解决不了,为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!