Android自訂ViewGroup及自訂屬性

來源:互聯網
上載者:User

標籤: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及自訂屬性

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.