標籤:android 自訂屬性 自訂view
一、自訂ViewGroup:
1、構造方法的選擇:
擷取一些需要用到的值(一些屬性或自訂屬性)
Public CustonViewGroup(Context context){this(context, null);}
Public CustonViewGroup(Context context, AttributeSet attrs){this(context, attrs, 0);}
attrs在布局檔案中聲明,上述兩個構造方法不能有自訂屬性
Public CustonViewGroup(Context context, AttributeSet attrs, int defStyleAttr)
該構造方法在有自訂屬性情況下調用
2、onMeasure:
計運算元View的寬和高以及設定自己的寬和高
3、onLayout:
決定子View的布局的位置
4、onTouchEvent:
監聽觸摸事件,如手指按下或放開,根據需要決定是否重載該方法
二、自訂屬性:
1、建立attr.xml檔案:650) this.width=650;" src="http://s1.51cto.com/wyfs02/M02/7A/4C/wKiom1anFbrSlADvAAANCU2Zovs723.png" title="QQ圖片20160126144328.png" alt="wKiom1anFbrSlADvAAANCU2Zovs723.png" />
在檔案中進行相關屬性的定義,例如:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="rightPadding" format="dimension"></attr>
<declare-styleable name="SlidingMenu">
<attr name="rightPadding"></attr>
</declare-styleable>
</resources>
其中attr name為自訂屬性名,declare-styleable name為自訂ViewGroup名
2、在布局檔案中使用:
650) this.width=650;" src="http://s4.51cto.com/wyfs02/M02/7A/4D/wKioL1anGxnyMv5jAABuuJD5Y9s312.png" title="QQ圖片20160126150535.png" alt="wKioL1anGxnyMv5jAABuuJD5Y9s312.png" />
複製xmlns:android的前一部分"http://schemas.android.com/apk",後一部分用"/res/包名"或者"/res-auto"。
3、在3個參數的構造方法中獲得自訂屬性的值:
// 擷取我們定義的屬性
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.SlidingMenu, defStyleAttr,0);
int n = a.getIndexCount();
for(int i = 0; i < n; i++) {
int attr = a.getIndex(i);
switch (attr) {
case R.styleable.SlidingMenu_rightPadding:
mMenuRightPadding = a.getDimensionPixelOffset(attr,
(int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 50, context.getResources().getDisplayMetrics()));
break;
}
}
a.recycle();
本文出自 “蝸牛旅途” 部落格,請務必保留此出處http://8432499.blog.51cto.com/8422499/1738628
Android自訂ViewGroup及自訂屬性