首頁>Android開發> 本文Android自訂View以及layout屬性全攻略
- 發布時間:2010-08-10
- 作者:Android開發網原創
對於Android系統的自訂View可能大家都熟悉了,對於自訂View的屬性添加,以及Android的Layout的命名空間問題,很多網友還不是很清楚,今天Android123一起再帶大家溫習一下
CwjView myView=new CwjView(context);
如果用於遊戲或整個表單的介面,我們可能直接在onCreate中setContentView(myView); 當然如果是控制項,我們可能會需要從Layout的xml中聲明,比如
<cn.com.android123.CwjView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
當然,我們也可以直接從父類聲明比如
<View class="cn.com.android123.CwjView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
上面我們僅用了父類View的兩個屬性,均來自android命名空間,而名稱為layout_width或layout_height,我們自訂的控制項可能有更多的功能,比如
<cn.com.android123.CwjView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
cwj:age="22"
cwj:university="sjtu"
cwj:city="shanghai"
/>
我們可以看到上面的三個屬性,是我們自訂的。作為標準xml規範,可能還包含了類似 xmlns:android="http://schemas.android.com/apk/res/android" 這樣的語句,對於定義完整的View,我們的命名空間為cwj,這裡可以寫為 xmlns:cwj=http://schemas.android.com/apk/res/cn.com.android123.cwjView 或 xmlns:cwj=http://schemas.android.com/apk/res/android 都可以。
對於定義的cwj命名空間和age、university以及city的三個屬性我們如何定義呢? 在工程的res/values目錄中我們建立一個cwj_attr.xml檔案,編碼方式為utf-8是一個好習慣,內容如下
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<declare-styleable name="CwjView">
<attr name="age" format="integer" />
<attr name="city" format="string" />
<attr name="university" format="string" />
</declare-styleable>
</resources>
這裡我們可能對format不是很熟悉,目前Android系統內建的格式類型有integer比如ProgressBar的進度值,float比如
RatingBar的值可能是3.5顆星,boolean比如ToggleButton的是否勾選,string比如TextView的text屬性,當
然除了我們常見的基礎類型外,Android的屬性還有特殊的比如color是用於顏色屬性的,可以識別為#FF0000等類型,當然還有
dimension的尺寸類型,比如23dip,15px,18sp的長度單位,還有一種特殊的為reference,一般用於引用@+id/cwj
@drawable/xxx這樣的類型。
當然什麼時候用reference呢? 我們就以定義一個顏色為例子,
<attr name="red" format="color|reference" /> 這裡我們用了邏輯或的運算子,定義的紅色是顏色類型的,同時可以被引用
當然,對於我們自訂的類中,我們需要使用一個名為obtainStyledAttributes的方法來擷取我們的定義。在我們自訂View的構造方法(Context context, AttributeSet attrs)的重載類型中可以用
public CwjView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.cwj_attr);
mAge = a.getInteger(R.styleable.CwjView_age, 22);
mCity = a.getString(R.styleable.CwjView_city, "shanghai");
mUniversity= a.getString(R.styleable.CwjView_university, "sjtu");
a.recycle(); //Android123提示大家不要忘了回收資源
}
這樣類的全域成員變數 mAge、mCity就擷取了我們需要的內容,當然根據layout中的數值我們自訂的CwjView需要動態處理一些資料的情況,可以使用AttributeSet類的getAttributeResourceValue方法擷取。
public CwjView(Context context, AttributeSet attrs)
{
super(context, attrs);
resId = attrs.getAttributeResourceValue("cn.com.android123.CwjView", "age", 100);
resId = attrs.getAttributeResourceValue("cn.com.android123.CwjView", "city", "shanghai");
//resID就可以任意使用了
}
以上兩種方法中,參數的最後一個數值為預設的,如果您有不明白的地方可以來函到 android123@163.com 我們會在第一時間回複。