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

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

    代码1定义了一个自定义控件,名字为MyView,是从View类继承而来,也就是说它本身就是一种View,只是在View基础上加工而成了我们自己的自定义控件MyView.在此类种黄色的两行变量是我们新的属性变量.

 

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

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

    <?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>

    在<resources>标签下使用<declare-styleable name="MyView">标签来告诉框架它包含的属性就是自定义控件MyView中的属性.黄色的两其实就对应了代码1中黄色的变量.

 

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

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

    我们再看一下代码1中的蓝色代码,其中使用AttributeSet来重载构造函数.在此函数中将类中的属性变量与代码二中定义的属性联系起来.

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

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

    我们看一下代码1中的黄色部分,就是对我们新定义的属性的使用.

 

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

    5.将自定义的控件类定义到布局用的xml文件中去.-----代码3:

    我们再看看布局的xml文件代码:

    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android
        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>
    其中红色部分在布局中引用了我们MyView控件.

 

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

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


 Android高手进阶教程(三)之----Android 中自定义View的应用.
2010-04-18 21:11:25
原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://weizhulin.blog.51cto.com/1556324/311457
大家好我们今天的教程是在Android 教程中自定义View 的学习,对于初学着来说,他们习惯了Android 传统的页面布局方式,如下代码:
view plaincopy to clipboardprint?
 
    
    
  1. <?xml version="1.0" encoding="utf-8"?>     
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  3.     android:orientation="vertical"    
  4.     android:layout_width="fill_parent"    
  5.     android:layout_height="fill_parent"    
  6.     >     
  7. <TextView       
  8.     android:layout_width="fill_parent"      
  9.     android:layout_height="wrap_content"      
  10.     android:text="@string/hello"    
  11.     />     
  12. </LinearLayout>    
  13. <?xml version="1.0" encoding="utf-8"?> 
  14. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  15.     android:orientation="vertical" 
  16.     android:layout_width="fill_parent" 
  17.     android:layout_height="fill_parent" 
  18.     > 
  19. <TextView    
  20.     android:layout_width="fill_parent"   
  21.     android:layout_height="wrap_content"   
  22.     android:text="@string/hello" 
  23.     /> 
  24. </LinearLayout>   
当然上面的布局方式可以帮助我们完成简单应用的开发了,但是如果你想写一个复杂的应用,这样就有点牵强了,大家不信可以下源码都研究看看,高手写的布局方式,如上面的布局高手通常是这样写的:
view plaincopy to clipboardprint?
 
    
    
  1. <?xml version="1.0" encoding="utf-8"?>     
  2. <A>     
  3.     <B></B>     
  4. </A>    
  5. <?xml version="1.0" encoding="utf-8"?> 
  6. <A> 
  7.  <B></B> 
  8. </A>   
view plaincopy to clipboardprint?
其中A extends LinerLayout, B extends TextView.  
其中A extends LinerLayout, B extends TextView.
为了帮助大家更容易理解,我写了一个简单的Demo ,具体步骤如下:
首先新建一个Android 工程 命名为ViewDemo .
然后自定义一个View 类,命名为MyView(extends View) .代码如下:
    
    
  1. view plaincopy to clipboardprint?  
  2. package com.android.tutor;     
  3. import android.content.Context;     
  4. import android.graphics.Canvas;     
  5. import android.graphics.Color;     
  6. import android.graphics.Paint;     
  7. import android.graphics.Rect;     
  8. import android.graphics.Paint.Style;     
  9. import android.util.AttributeSet;     
  10. import android.view.View;     
  11. public class MyView extends View {     
  12.     private Paint mPaint;     
  13.     private Context mContext;     
  14.     private static final String mString = "Welcome to Mr Wei's blog";     
  15.          
  16.     public MyView(Context context) {     
  17.         super(context);     
  18.          
  19.     }     
  20.     public MyView(Context context,AttributeSet attr)     
  21.     {     
  22.         super(context,attr);     
  23.          
  24.     }     
  25.     @Override    
  26.     protected void onDraw(Canvas canvas) {     
  27.         // TODO Auto-generated method stub     
  28.         super.onDraw(canvas);     
  29.              
  30.         mPaint = new Paint();     
  31.              
  32.         //设置画笔颜色     
  33.         mPaint.setColor(Color.RED);     
  34.         //设置填充     
  35.         mPaint.setStyle(Style.FILL);     
  36.              
  37.         //画一个矩形,前俩个是矩形左上角坐标,后面俩个是右下角坐标     
  38.         canvas.drawRect(new Rect(10, 10, 100, 100), mPaint);     
  39.              
  40.         mPaint.setColor(Color.BLUE);     
  41.         //绘制文字     
  42.         canvas.drawText(mString, 10, 110, mPaint);     
  43.     }     
  44. }    
  45. package com.android.tutor;  
  46. import android.content.Context;  
  47. import android.graphics.Canvas;  
  48. import android.graphics.Color;  
  49. import android.graphics.Paint;  
  50. import android.graphics.Rect;  
  51. import android.graphics.Paint.Style;  
  52. import android.util.AttributeSet;  
  53. import android.view.View;  
  54. public class MyView extends View {  
  55.  private Paint mPaint;  
  56.  private Context mContext;  
  57.  private static final String mString = "Welcome to Mr Wei's blog";  
  58.    
  59.  public MyView(Context context) {  
  60.   super(context);  
  61.    
  62.  }  
  63.  public MyView(Context context,AttributeSet attr)  
  64.  {  
  65.   super(context,attr);  
  66.    
  67.  }  
  68.  @Override  
  69.  protected void onDraw(Canvas canvas) {  
  70.   // TODO Auto-generated method stub  
  71.   super.onDraw(canvas);  
  72.     
  73.   mPaint = new Paint();  
  74.     
  75.   //设置画笔颜色  
  76.   mPaint.setColor(Color.RED);  
  77.   //设置填充  
  78.   mPaint.setStyle(Style.FILL);  
  79.     
  80.   //画一个矩形,前俩个是矩形左上角坐标,后面俩个是右下角坐标  
  81.   canvas.drawRect(new Rect(10, 10, 100, 100), mPaint);  
  82.     
  83.   mPaint.setColor(Color.BLUE);  
  84.   //绘制文字  
  85.   canvas.drawText(mString, 10, 110, mPaint);  
  86.  }  
  87. }  
  88.    
  89. 然后将我们自定义的View 加入到main.xml 布局文件中,代码如下:  
  90. view plaincopy to clipboardprint?  
  91. <?xml version="1.0" encoding="utf-8"?>     
  92. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  93.     android:orientation="vertical"    
  94.     android:layout_width="fill_parent"    
  95.     android:layout_height="fill_parent"    
  96.     >     
  97. <TextView       
  98.     android:layout_width="fill_parent"      
  99.     android:layout_height="wrap_content"      
  100.     android:text="@string/hello"    
  101.     />     
  102. <com.android.tutor.MyView     
  103.     android:layout_width="fill_parent"      
  104.     android:layout_height="fill_parent"      
  105. />     
  106. </LinearLayout>    
  107. <?xml version="1.0" encoding="utf-8"?> 
  108. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  109.     android:orientation="vertical" 
  110.     android:layout_width="fill_parent" 
  111.     android:layout_height="fill_parent" 
  112.     > 
  113. <TextView    
  114.     android:layout_width="fill_parent"   
  115.     android:layout_height="wrap_content"   
  116.     android:text="@string/hello" 
  117.     /> 
  118. <com.android.tutor.MyView 
  119.  android:layout_width="fill_parent"   
  120.     android:layout_height="fill_parent"   
  121. /> 
  122. </LinearLayout>   
最后执行之,效果如下图:
 
OK,大功告成,今天就写到这里,开始做饭了,老婆孩子等我做饭了,lol~
 

 

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值