Android高手进阶教程(三)之----Android 中自定义View的应用.

大家好我们今天的教程是在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>    
当然上面的布局方式可以帮助我们完成简单应用的开发了,但是如果你想写一个复杂的应用,这样就有点牵强了,大家不信可以下源码都研究看看,高手写的布局方式,如上面的布局高手通常是这样写的:
view plaincopy to clipboardprint?
 
  
  
  1. <?xml version="1.0" encoding="utf-8"?>     
  2. <A>     
  3.     <B></B>     
  4. </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. 然后将我们自定义的View 加入到main.xml 布局文件中,代码如下:  
  46. view plaincopy to clipboardprint?  
  47. <?xml version="1.0" encoding="utf-8"?>     
  48. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  49.     android:orientation="vertical"    
  50.     android:layout_width="fill_parent"    
  51.     android:layout_height="fill_parent"    
  52.     >     
  53. <TextView       
  54.     android:layout_width="fill_parent"      
  55.     android:layout_height="wrap_content"      
  56.     android:text="@string/hello"    
  57.     />     
  58. <com.android.tutor.MyView     
  59.     android:layout_width="fill_parent"      
  60.     android:layout_height="fill_parent"      
  61. />     
  62. </LinearLayout>    
最后执行之,效果如下图:
 
OK,大功告成,今天就写到这里,开始做饭了,老婆孩子等我做饭了,lol~
 
 

本文出自 “Android_Tutor” 博客,请务必保留此出处http://weizhulin.blog.51cto.com/1556324/311457


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值