我有一个resources.xml文件位于direcotry值/,就是这样
/values/resources.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="TheMissingTabWidget"> <attr name="android:divider" /> </declare-styleable> </resources>
在我的java代码中,当我尝试通过R.styleable.MissingTabWidget访问这个资源时,eclipse抱怨风格无法解决或者不是一个字段.为什么?为什么我无法访问此资源? (我正在使用android 2.1更新).
解决方法
plz make values / 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>