一、 在res/values 文件下定义一个attrs.xml 文件.代码如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyView">
<attr name="textColor" format="color" />
<attr name="textSize" format="dimension" />
</declare-styleable>
</resources>
二、 我们在MyView.java 代码编写如下,其中下面的构造方法是重点,我们获取定义的属性R.sytleable.MyView_textColor, 获取方法中后面通常设定默认值(float textSize = a.getDimension(R.styleable.MyView_textSize, 36 ); ), 防止我们在xml 文件中没有定义.从而使用默认值!
MyView 就是定义在<declare-styleable name="MyView "></declare-styleable> 里的 名字,获取里面属性用 名字_ 属性 连接起来就可以.TypedArray 通常最后调用 .recycle() 方法,为了保持以后使用该属性一致性!
public MyView(Context context,AttributeSet attrs)
{
super(context,attrs);
mPaint = new Paint();
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.MyView);
int textColor = a.getColor(R.styleable.MyView_textColor,
0XFFFFFFFF);
float textSize = a.getDimension(R.styleable.MyView_textSize, 36);
mPaint.setTextSize(textSize);
mPaint.setColor(textColor);
a.recycle();
}
MyView.java MyView控件全部代码如下:
package com.android.tutor;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.Paint.Style;
import android.util.AttributeSet;
import android.view.View;
public class MyView extends View {
private Paint mPaint;
private Context mContext;
private static final String mString = "Welcome to Mr Wei's blog";
public MyView(Context context) {
super(context);
mPaint = new Paint();
}
public MyView(Context context,AttributeSet attrs)
{
super(context,attrs);
mPaint = new Paint();
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.MyView);
int textColor = a.getColor(R.styleable.MyView_textColor,
0XFFFFFFFF);
float textSize = a.getDimension(R.styleable.MyView_textSize, 36);
mPaint.setTextSize(textSize);
mPaint.setColor(textColor);
a.recycle();
}
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
//设置填充
mPaint.setStyle(Style.FILL);
//画一个矩形,前俩个是矩形左上角坐标,后面俩个是右下角坐标
canvas.drawRect(new Rect(10, 10, 100, 100), mPaint);
mPaint.setColor(Color.BLUE);
//绘制文字
canvas.drawText(mString, 10, 110, mPaint);
}
}
三、将我们自定义的MyView 加入布局main.xml 文件中,并且使用自定义属性,自定义属性必须加上:
" xmlns:test ="http://schemas.android.com/apk/res/com.android.tutor" ,test是自定义属性的前缀, com.android.tutor 是我们包名.
main.xml 全部代码如下:
<?xml
version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:test="http://schemas.android.com/apk/res/com.android.tutor"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<com.android.tutor.MyView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
test:textSize="20px"
test:textColor="#fff"
/>
</LinearLayout>
分享到:
相关推荐
`obtainStyledAttributes()` 方法用于创建TypedArray对象,传入的第二个参数是R.styleable.CustomButton,这是我们在attr.xml中定义的styleable资源ID。 四、自定义属性与主题(Theme) 除了在布局文件中直接设置...
接下来,我们要在自定义组件中使用这些属性。这通常在`onCreateView()`或`onInitializeTextView()`方法中完成,通过`TypedArray`来获取属性值。以下是一个`MyTextView`类的示例: ```java public class MyTextView ...
下面我们将详细讨论如何在Android中使用自定义`styleable`以及其重要性。 首先,理解`styleable`的概念。`styleable`是Android资源系统中的一种类型,类似于数组,用于存储一系列的属性。这些属性通常在` attrs.xml...
1. 动态属性:除了在XML中设置,还可以在运行时动态改变自定义属性。通过`setMyColor()`和`setMySize()`方法实现。 2. 触摸事件处理:自定义控件可以覆盖`onTouchEvent()`方法,实现自己的触摸事件处理逻辑。 3. ...
现在,我们可以在布局XML文件中使用这个自定义控件,并设置自定义属性: ```xml <com.example.CustomButton android:layout_width="wrap_content" android:layout_height="wrap_content" app:customTextSize="24...
6. 注册到Android系统:在res/values/attrs.xml文件中定义自定义属性,在res/layout布局文件中使用标签引入自定义控件。 二、自定义控件实例分析 在这个入门级demo中,我们可能看到以下关键代码: 1. 自定义控件...
首先,自定义控件属性主要涉及`attr.xml`文件的创建和使用。在项目的`res/values`目录下,我们需要创建一个或多个`attr.xml`文件,用于定义自定义的属性。例如: ```xml <declare-styleable name="MyCustomView">...
4. **使用自定义控件**:现在,我们可以在XML布局中使用自定义控件,并设置自定义属性。例如: ```xml <com.example.myapp.CustomButton android:layout_width="wrap_content" android:layout_height="wrap_...
在这里,`R.styleable.CustomButton`是一个整数数组,它引用了我们在attr.xml中声明的自定义属性集。`R.styleable.CustomButton_my_custom_color`则是对应于`my_custom_color`属性的索引。 4. **在代码中使用属性*...
6. **Demo示例**:在XmlTest项目中,可以找到一个完整的示例,它展示了如何创建一个自定义的按钮控件,该控件接收并应用XML中的颜色和文本属性。运行这个Demo,你可以看到自定义控件在界面上的呈现效果。 自定义...
为了在XML布局文件中使用自定义控件并设置其属性,我们需要在控件类中定义XML属性。这通常通过创建一个资源文件(如 attrs.xml)并在其中声明属性。例如,我们可以定义如“标题文本”、“字体大小”、“颜色”等属性...
- **作用**:`declare-styleable`用于声明自定义控件支持的属性,便于在XML布局文件中使用这些属性。 - **实现步骤**: - 在`res/values`目录下创建一个XML文件,通常命名为`attrs.xml`。 - 在此文件中使用`...
4. 在布局XML文件中使用自定义控件,通过全限定类名引用。 例如,我们有一个自定义控件名为MyCustomView,它可能包含以下代码: ```java public class MyCustomView extends View { public MyCustomView(Context ...
通过继承`android.view.View`或者`android.widget.TextView`等基类,我们可以在`attr.xml`文件中定义自定义属性,然后在`TypedArray`中解析这些属性,使得它们在运行时能够被读取和使用。 ```xml <!-- attr.xml -->...
6. **在XML中使用自定义控件**:最后,在布局文件中,我们可以像使用其他Android内置控件一样使用`TestWidget`,并设置自定义属性: ```xml <com.example.myapp.TestWidget android:layout_width="wrap_content" ...
接下来,我们可以在布局XML文件中使用这个自定义控件,就像使用其他标准控件一样。别忘了在`<merge>`或`<layout>`标签内引入自定义控件的命名空间,并在`<TestCustomWidget>`标签中指定自定义属性: ```xml ...
最后,为了在布局文件中使用自定义控件,需要在`res/layout`目录下创建XML布局,并在`<merge>`或`<LinearLayout>`等元素中引入它: ```xml <com.example.myapp.RoundedRectangleButton android:layout_width="wrap...
为了让开发者能够轻松地在XML布局文件中使用这个自定义控件,我们需要在res/values/attrs.xml中定义自定义属性,如边距、字体大小等。然后,在自定义控件类中,通过obtainStyledAttributes()方法获取这些属性值。 `...
在类的构造函数中,我们通过`obtainStyledAttributes()`方法获取到`attrs.xml`中定义的属性,并通过`TypedArray`对象读取它们的值。注意,对于`testSize`,我们需要使用`getDimensionPixelSize()`来获取尺寸值,因为...
本篇将深入探讨如何创建一个带有自定义属性的控件,并通过实例演示如何在布局文件中使用这些属性。 首先,创建自定义控件需要继承已有的View或ViewGroup类。在这个例子中,我们可以假设我们创建了一个名为...