R.styleable解决不了,为什么?styleable

2023-09-13 01:33:17 作者:冷心

我有一个 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抱怨的设置样式不能得到解决或不是现场。为什么?为什么我不能访问这个资源? (我用的Andr​​oid 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>