Android 中自定義View的應用.

大家好我們今天的教程是在Android 教程中自定義View 的學習,對於初學着來說,他們習慣了Android 傳統的頁面佈局方式,如下代碼:

 

[java] view plain copy
  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>  

 

當然上面的佈局方式可以幫助我們完成簡單應用的開發了,但是如果你想寫一個複雜的應用,這樣就有點牽強了,大家不信可以下源碼都研究看看,高手寫的佈局方式,如上面的佈局高手通常是這樣寫的:

 

[java] view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <A>  
  3.     <B></B>  
  4. </A>  

[java] view plain copy
  1. 其中A extends LinerLayout, B extends TextView.  

 

爲了幫助大家更容易理解,我寫了一個簡單的Demo ,具體步驟如下:

 

首先新建一個Android 工程 命名爲ViewDemo .

 

然後自定義一個View 類,命名爲MyView(extends View) .代碼如下:

 

[java] view plain copy
  1. package com.android.tutor;  
  2. import android.content.Context;  
  3. import android.graphics.Canvas;  
  4. import android.graphics.Color;  
  5. import android.graphics.Paint;  
  6. import android.graphics.Rect;  
  7. import android.graphics.Paint.Style;  
  8. import android.util.AttributeSet;  
  9. import android.view.View;  
  10. public class MyView extends View {  
  11.     private Paint mPaint;  
  12.     private Context mContext;  
  13.     private static final String mString = "Welcome to Mr Wei's blog";  
  14.       
  15.     public MyView(Context context) {  
  16.         super(context);  
  17.       
  18.     }  
  19.     public MyView(Context context,AttributeSet attr)  
  20.     {  
  21.         super(context,attr);  
  22.       
  23.     }  
  24.     @Override  
  25.     protected void onDraw(Canvas canvas) {  
  26.         // TODO Auto-generated method stub  
  27.         super.onDraw(canvas);  
  28.           
  29.         mPaint = new Paint();  
  30.           
  31.         //設置畫筆顏色  
  32.         mPaint.setColor(Color.RED);  
  33.         //設置填充  
  34.         mPaint.setStyle(Style.FILL);  
  35.           
  36.         //畫一個矩形,前倆個是矩形左上角座標,後面倆個是右下角座標  
  37.         canvas.drawRect(new Rect(1010100100), mPaint);  
  38.           
  39.         mPaint.setColor(Color.BLUE);  
  40.         //繪製文字  
  41.         canvas.drawText(mString, 10110, mPaint);  
  42.     }  
  43. }  

 

然後將我們自定義的View 加入到main.xml 佈局文件中,代碼如下:

 

[java] view plain copy
  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. <com.android.tutor.MyView  
  13.     android:layout_width="fill_parent"   
  14.     android:layout_height="fill_parent"   
  15. />  
  16. </LinearLayout>  

最後執行之,效果如下圖:

 

 

轉自:http://blog.csdn.net/android_tutor/article/details/5499731

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章