我对 Android 和 Java 还很陌生,所以如果我遗漏了一些明显的东西,请原谅我。
我想编写一个自定义视图,但我无法通过 otainStyledAttributes 获取自定义属性。我有一个非常简单的测试用例。在 Eclipse 中,我使用默认活动创建一个空项目(包 com.example.customview)。然后我在 res/values 下添加了一个“attrs.xml”文件,内容如下:
<resources>
<declare-styleable name="testview">
<attr name="test" format="string"/>
</declare-styleable>
</resources>
然后我在新包“com.example.views”中添加一个新类“testview.java”。
package com.example.views;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.example.customview.R;
public class testview extends LinearLayout{
public testview(Context context,AttributeSet attrs){
super(context,attrs);
TextView tv = new TextView(context);
this.addView(tv);
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.testview, 0, 0);
tv.setText(a.getString(R.styleable.testview_test));
a.recycle();
}
}
最后在 activity_main.xml 我有:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:my="http://schemas.android.com/apk/res/com.example.customview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<com.example.views.testview
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
my:test="test"
/>
</RelativeLayout>
我能够获得 my:test 属性
attrs.getAttributeValue("http://schemas.android.com/apk/res/com.example.customview","test")
但如果我将属性放在任何随机命名空间中,这也有效。
但 a.getString(R.styleable.testview_test) 始终为空。