Android 中自定義View的應用

2021-05-25 22:22:27 字數 2300 閱讀 6964

<?xml version="1.0" encoding="utf-8"?>  

"  android:orientation="vertical" 

android:layout_width="fill_parent" 

android:layout_height="fill_parent" 

>  

<?xml version="1.0" encoding="utf-8"?>

"android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

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

<?xml version="1.0" encoding="utf-8"?>  

<?xml version="1.0" encoding="utf-8"?>

其中a extends linerlayout, b extends textview. 

其中a extends linerlayout, b extends textview.

首先新建乙個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   

public myview(context context,attributeset attr)  

@override 

protected void ondraw(canvas canvas)   

}  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

public myview(context context,attributeset attr)

@override

protected void ondraw(canvas canvas)

}然後將我們自定義的view 加入到main.xml 布局檔案中,**如下:

<?xml version="1.0" encoding="utf-8"?>  

"  android:orientation="vertical" 

android:layout_width="fill_parent" 

android:layout_height="fill_parent" 

>  

<?xml version="1.0" encoding="utf-8"?>

"android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

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

ok,大功告成,今天就寫到這裡~~~~

Android自定義View 自定義元件

自繪控制項也分兩種,自定義元件和自定義容器,自定義元件是繼承view類,自定義容器時繼承viewgrounp 今天主要分析下自定義元件 還是舉個例子來的實際些,假如我們要畫乙個最簡單的textview,首先想到的就是canvas.drawtext 方法,怎麼畫了?還是得一步一步來 1 寫乙個myte...

Android自定義View實現

android自定義view實現很簡單 繼承view或者其子類,重寫建構函式 ondraw,onmeasure 等函式,根據繼承的類的不同可能有所不同。如果自定義的view需要有自定義的屬性,需要在values下建立attrs.xml。在其中定義你的屬性。在使用到自定義view的xml布局檔案中需要...

Android 自定義View 一

android的ui介面都是由view和viewgroup及其派生類組合而成的。其中,view是所有ui元件的基類,而viewgroup是容納這些元件的容器,其本身也是從view派生出來的。androidui介面的一般結構可參見下面的示意圖 可見,作為容器的viewgroup可以包含作為葉子節點的v...