0

我有一些自定义视图和自定义属性。我想定义我的视图使用哪些属性,以便 eclipse 可以将其用于内容辅助。

例如,我在 res/values 文件夹中声明了一个自定义 xml 属性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="TagAttrs">
        <attr name="spColor" format="color" />
    </declare-styleable>
</resources> 

我的布局文件使用带有自定义属性的自定义视图:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res/com.twp"
    ...
    >

    <com.twp.TestView
        android:id="@+id/testView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:spColor="#FF00FF" >
       ...
   </com.twp.TestView>
</LinearLayout>

如果我使用 android: 前缀,则 eclipse 会为 LinearLayout (从中派生 TestView)提供所有选项,但如果我使用 app: 前缀,它会在底部以红色显示“Element com.twp.TestView not可用的”。此外,如果我在 spColor 中尝试内容辅助,它会显示“内容辅助在当前位置不可用”。我想,既然我定义了“app”命名空间,它就能找到我的风格声明,并且至少知道 spColor 是一种颜色。

所以这只是 eclipse 的限制,还是我可以明确定义视图的自定义属性?

4

1 回答 1

1

我认为 declare-styleable 中的 name 属性的值需要匹配关联类的非限定名称或关联类的超类的非限定名称。所以如果TestView的直接超类是LinearLayout,那么关联的declare-styleable中name属性的值应该是TestView,而不是TagAttrs。

于 2012-08-26T23:20:30.923 回答