Android高手進階教程(三)之—-Android 中自訂View的應用

來源:互聯網
上載者:User

大家好我們今天的教程是在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>    

<?xml version="1.0" encoding="utf-8"?><br /><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"<br /> android:orientation="vertical"<br /> android:layout_width="fill_parent"<br /> android:layout_height="fill_parent"<br /> ><br /><TextView<br /> android:layout_width="fill_parent"<br /> android:layout_height="wrap_content"<br /> android:text="@string/hello"<br /> /><br /></LinearLayout>

 

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

 

view plaincopy to clipboardprint?
  1. <?xml version="1.0" encoding="utf-8"?>      
  2. <A>      
  3.     <B></B>      
  4. </A>   

<?xml version="1.0" encoding="utf-8"?><br /><A><br /> <B></B><br /></A>

 

其中A extends LinerLayout, B extends TextView. 

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

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

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

 

view plaincopy to clipboardprint?
  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(10, 10, 100, 100), mPaint);      
  38.               
  39.         mPaint.setColor(Color.BLUE);      
  40.         //繪製文字      
  41.         canvas.drawText(mString, 10, 110, mPaint);      
  42.     }      
  43. }    

package com.android.tutor;<br />import android.content.Context;<br />import android.graphics.Canvas;<br />import android.graphics.Color;<br />import android.graphics.Paint;<br />import android.graphics.Rect;<br />import android.graphics.Paint.Style;<br />import android.util.AttributeSet;<br />import android.view.View;<br />public class MyView extends View {<br /> private Paint mPaint;<br /> private Context mContext;<br /> private static final String mString = "Welcome to Mr Wei's blog"; </p><p> public MyView(Context context) {<br /> super(context); </p><p> }<br /> public MyView(Context context,AttributeSet attr)<br /> {<br /> super(context,attr); </p><p> }<br /> @Override<br /> protected void onDraw(Canvas canvas) {<br /> // TODO Auto-generated method stub<br /> super.onDraw(canvas); </p><p> mPaint = new Paint(); </p><p> //設定畫筆顏色<br /> mPaint.setColor(Color.RED);<br /> //設定填充<br /> mPaint.setStyle(Style.FILL); </p><p> //畫一個矩形,前倆個是矩形左上方座標,後面倆個是右下角座標<br /> canvas.drawRect(new Rect(10, 10, 100, 100), mPaint); </p><p> mPaint.setColor(Color.BLUE);<br /> //繪製文字<br /> canvas.drawText(mString, 10, 110, mPaint);<br /> }<br />}

 

然後將我們自訂的View 加入到main.xml 布局檔案中,代碼如下:

 

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

<?xml version="1.0" encoding="utf-8"?><br /><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"<br /> android:orientation="vertical"<br /> android:layout_width="fill_parent"<br /> android:layout_height="fill_parent"<br /> ><br /><TextView<br /> android:layout_width="fill_parent"<br /> android:layout_height="wrap_content"<br /> android:text="@string/hello"<br /> /><br /><com.android.tutor.MyView<br /> android:layout_width="fill_parent"<br /> android:layout_height="fill_parent"<br />/><br /></LinearLayout>

 

最後執行之,效果如:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.