Android高手進階教程(三)之—-Android 中自定義View的應用 – Android移動開發技術文章_手機開發 Android移動開發教學課程

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


view plaincopy to clipboardprint?
<?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” 
    /> 
</LinearLayout> 


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


view plaincopy to clipboardprint?
<?xml version=”1.0″ encoding=”utf-8″?> 
<A> 
    <B></B> 
</A> 


view plaincopy to clipboardprint?
其中A extends LinerLayout, B extends TextView. 


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


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


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


view plaincopy to clipboardprint?
package com.android.tutor; 
import android.content.Context; 
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 Weis blog”; 
     
    public MyView(Context context) { 
        super(context); 
     
    } 
    public MyView(Context context,AttributeSet attr) 
    { 
        super(context,attr); 
     
    } 
    @Override 
    protected void onDraw(Canvas canvas) { 
        // TODO Auto-generated method stub 
        super.onDraw(canvas); 
         
        mPaint = new Paint(); 
         
        //設置畫筆顏色 
        mPaint.setColor(Color.RED); 
        //設置填充 
        mPaint.setStyle(Style.FILL); 
         
        //畫一個矩形,前倆個是矩形左上角坐標,後面倆個是右下角坐標 
        canvas.drawRect(new Rect(10, 10, 100, 100), mPaint); 
         
        mPaint.setColor(Color.BLUE); 
        //繪制文字 
        canvas.drawText(mString, 10, 110, mPaint); 
    } 


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


view plaincopy to clipboardprint?
<?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”  
/> 
</LinearLayout> 


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


 


OK,大功告成,今天就寫到這裡,開始做飯瞭,老婆孩子等我做飯瞭,lol~

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *