时间:2021-05-20
关于Android的自定义控件,之前也写了两个,一个是简单地继承View,另一个通过继承Layout实现一个省市联动控件。这篇,将通过继承ViewGroup来实现一个电话拨打小键盘。本人一贯风格,懒得罗里吧嗦讲一大堆,直接上图上代码,一切尽在注释中!
1、MyPhoneCard.java
/** * * 自定义一个4*3的拨打电话的布局控件, * * */ public class MyPhoneCard extends ViewGroup{ private static final int COLUMNS = 3; private static final int ROWS = 4; private static final int NUM_BUTTON = COLUMNS*ROWS; private View[] mButtons = new View[NUM_BUTTON]; private int mButtonWidth; private int mButtonHeight; private int mPaddingLeft; private int mPaddingRight; private int mPaddingTop; private int mPaddingBottom; private int mWidthInc; private int mHeightInc; private int mWidth; private int mHeight; public MyPhoneCard(Context context) { super(context); } public MyPhoneCard(Context context, AttributeSet attrs){ super(context,attrs); } public MyPhoneCard(Context context, AttributeSet attrs, int defStyle){ super(context,attrs,defStyle); } /** * 当从xml将所有的控件都调入内存后,触发的动作 * 在这里获取控件的大小,并计算整个ViewGroup需要的总的宽和高 */ @Override protected void onFinishInflate(){ super.onFinishInflate(); final View[] btns = mButtons; for(int i=0; i<NUM_BUTTON; i++){ btns[i] = this.getChildAt(i); btns[i].measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED); } //缓存大小 final View child = btns[0]; mButtonWidth = child.getMeasuredWidth(); mButtonHeight = child.getMeasuredHeight(); mPaddingLeft = this.getPaddingLeft(); mPaddingRight = this.getPaddingRight(); mPaddingTop = this.getPaddingTop(); mPaddingBottom = this.getPaddingBottom(); mWidthInc = mButtonWidth + mPaddingLeft + mPaddingRight; mHeightInc = mButtonHeight + mPaddingTop + mPaddingBottom; mWidth = mWidthInc*COLUMNS; mHeight = mHeightInc*ROWS; Log.v("Finish Inflate:", "btnWidth="+mButtonWidth+",btnHeight="+mButtonHeight+",padding:"+mPaddingLeft+","+mPaddingTop+","+mPaddingRight+","+mPaddingBottom); } /** * 这个方法在onFinishInflate之后,onLayout之前调用。这个方面调用两次 */ @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){ super.onMeasure(widthMeasureSpec, heightMeasureSpec); Log.v("ViewGroup SIZE:width=", mWidth+""); Log.v("ViewGroup SIZE: height=",mHeight+""); final int width = resolveSize(mWidth, widthMeasureSpec);//传入我们希望得到的宽度,得到测量后的宽度 final int height = resolveSize(mHeight,heightMeasureSpec);//传入我们希望得到的高度,得到测量后的高度 Log.v("ViewGroup Measured SIZE: width=", width+""); Log.v("ViewGroup Measured SIZE: height=", height+""); //重新计算后的结果,需要设置。下面这个方法必须调用 setMeasuredDimension(width, height); } /** * 这个方法在onMeasure之后执行,这个自定义控件中含有12个子控件(每个小键),所以,重写这个方法, * 调用每个键的layout,将他们一个一个布局好 * 就是4*3的放置,很简单,一个嵌套循环搞定 */ @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { final View[] buttons = mButtons; int i = 0; Log.v("BOTTOM:", bottom+""); Log.v("TOP", top+""); int y = (bottom - top) - mHeight + mPaddingTop;//这里其实bottom-top=mHeight,所以y=mPaddingTop Log.v("Y=", y+""); for(int row=0; row<ROWS; row++){ int x = mPaddingLeft; for(int col = 0; col < COLUMNS; col++){ buttons[i].layout(x, y, x+mButtonWidth, y+mButtonHeight); x = x + mWidthInc; i++; } y = y + mHeightInc; } } }2、布局文件:
这样,就实现了上图的小键盘。这个例子参考Android自带电话应用的实现。可见,在开发中,灵活运用自定义的控件,可以实现独特而富有魅力的效果!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言:前面几篇讲了自定义控件绘制原理Android自定义控件基本原理详解(一),Android自定义控件之自定义属性(二),Android自定义控件之自定义组合
前言:前两篇介绍了自定义控件的基础原理Android自定义控件基本原理详解(一)、Android自定义控件之自定义属性(二)。今天重点介绍一下如何通过自定义组合
本文讲述绘制Android自定义各种图形效果,为自定义控件的入门篇相关视频链接:Android自定义控件系列http://edu.csdn.net/course
本文实例讲述了Android开发自定义控件之折线图实现方法。分享给大家供大家参考,具体如下:前言折线图是Android开发中经常会碰到的效果,但由于涉及自定义V
在Android开发中,往往要用到自定义的控件来实现我们的需求或效果。在使用自定义控件时,难免要用到自定义属性,那怎么使用自定义属性呢?在文件res/value