大家好我們今天的教程是在**Android**教程中自定義**View**的學習,對于初學著來說,他們習慣了**Android**傳統的頁面布局方式,如下代碼:
~~~
<?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>
~~~
?
當然上面的布局方式可以幫助我們完成簡單應用的開發了,但是如果你想寫一個復雜的應用,這樣就有點牽強了,大家不信可以下源碼都研究看看,高手寫的布局方式,如上面的布局高手通常是這樣寫的:
?
<?xml version="1.0" encoding="utf-8"?><A> <B></B></A>
其中A extends LinerLayout, B extends TextView.
?
為了幫助大家更容易理解,我寫了一個簡單的**Demo**,具體步驟如下:
?
首先新建一個**Android **工程 命名為**ViewDemo**.
?
然后自定義一個**View**類,命名為**MyView(extends View)**.代碼如下:
?
~~~
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 Wei's 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**布局文件中,代碼如下:
?
~~~
<?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~
?
?
- 前言
- (一)Android常用名令集錦(圖文并茂)!
- (二)Android Launcher抽屜類SlidingDrawer的使用!
- (三)Android 中自定義View的應用.
- (四)Android 中自定義屬性(attr.xml,TypedArray)的使用!
- (五)Android 中LayoutInflater的使用!
- (六)Android 中MenuInflater的使用(布局定義菜單)!
- (七)Android 中Preferences的使用!
- (八)Android Widget開發案例(世界杯倒計時!)
- (九)Android Handler的使用!!!
- (十)Android PopupWindow的使用!!!
- (十一)Android 通用獲取Ip的方法(判斷手機是否聯網的方法)!!!
- (十二)Android 在一個應用中如何啟動另外一個已安裝的應用!!!
- (十三)Android 數據庫SQLiteDatabase的使用!!
- (十四)Android Location的使用!!
- (十五)通過Location獲取Address的使用!
- (十六)Android中萬能的BaseAdapter(Spinner,ListView,GridView)的使用!
- Android 中的拿來主義(編譯,反編譯,AXMLPrinter2,smali,baksmali)!
- (十七)Android中Intent傳遞對象的兩種方法(Serializable,Parcelable)!
- (十八)列出Android設備中所有啟動的服務,及判斷某個服務是否開啟!
- (十九)Android開發中,使用線程應該注意的問題!
- (二十)Android與JavaScript方法相互調用!
- (二十一)Android中創建與幾種解析xml的方法!
- (二十二)Android中幾種圖像特效處理的集錦!!
- (二十三)Android中的日歷讀寫操作!!!
- (二十四)Android WebView的緩存!!!
- (二十五)Android 中的AIDL!!!