现在的位置: 首页 > 综合 > 正文

Android使用AttributeSet自定义控件的方法

2013年04月03日 ⁄ 综合 ⁄ 共 1789字 ⁄ 字号 评论关闭

Android使用AttributeSet自定义控件的方法

所谓自定义控件(或称组件)也就是编写自己的控件类型,而非Android中提供的标准的控件,如TextView,CheckBox等等.不过自定义的控件一般也都是从标准控件继承来的,或者是多种控件组合,或者是对标准控件的属性进行改变而得到的自己满意的控件.

    自定义控件可能会有很多种方法,这里只介绍我要介绍的方法.

 

    在这种方法中,大概的步骤是这样的

    1.我们的自定义控件和其他的控件一样,应该写成一个类,而这个类的属性是是有自己来决定的.

    2.我们要在res/values目录下建立一个attrs.xml的文件,并在此文件中增加对控件的属性的定义.

    3.使用AttributeSet来完成控件类的构造函数,并在构造函数中将自定义控件类中变量与attrs.xml中的属性连接起来.

    4.在自定义控件类中使用这些已经连接的属性变量.

    5.将自定义的控件类定义到布局用的xml文件中去.

    6.在界面中生成此自定义控件类对象,并加以使用.

 

    好了,按照上述的方法,我们来看看http://blog.csdn.net/Android_Tutor/archive/2010/04/20/5508615.aspx

    博客中的实例代码,按步骤加以解释:

    //---------------------------------------------------------------------------------

    1.
定义自己的控件类:--------------------------------------------代码1.

    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);  

          

        

抱歉!评论已关闭.