/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.numix.calculator.view; import android.content.Context; import android.content.res.Resources; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.Paint.Style; import android.graphics.Rect; import android.util.AttributeSet; import android.view.MotionEvent; import android.widget.Button; import com.numix.calculator.Calculator; import com.numix.calculator.EventListener; import com.numix.calculator.R; /** * Button with click-animation effect. */ class ColorButton extends Button { int CLICK_FEEDBACK_COLOR; static final int CLICK_FEEDBACK_INTERVAL = 10; static final int CLICK_FEEDBACK_DURATION = 350; float mTextX; float mTextY; long mAnimStart; EventListener mListener; Paint mFeedbackPaint; Paint mHintPaint = new Paint(); Rect mBounds = new Rect(); float mTextSize = 0f; public ColorButton(Context context, AttributeSet attrs) { super(context, attrs); Calculator calc = (Calculator) context; mListener = calc.mListener; setOnClickListener(mListener); setOnLongClickListener(mListener); } private void layoutText() { Paint paint = getPaint(); if(mTextSize != 0f) paint.setTextSize(mTextSize); float textWidth = paint.measureText(getText().toString()); float width = getWidth() - getPaddingLeft() - getPaddingRight(); float textSize = getTextSize(); if(textWidth > width) { paint.setTextSize(textSize * width / textWidth); mTextX = getPaddingLeft(); mTextSize = textSize; } else { mTextX = (getWidth() - textWidth) / 2; } mTextY = (getHeight() - paint.ascent() - paint.descent()) / 2; if(mHintPaint != null) mHintPaint.setTextSize(paint.getTextSize() * getContext().getResources().getInteger(R.integer.button_hint_text_size_percent) / 100f); } @Override protected void onTextChanged(CharSequence text, int start, int before, int after) { layoutText(); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); if(changed) layoutText(); } @Override protected void onDraw(Canvas canvas) { if(mAnimStart != -1) { int animDuration = (int) (System.currentTimeMillis() - mAnimStart); if(animDuration >= CLICK_FEEDBACK_DURATION) { mAnimStart = -1; } else { postInvalidateDelayed(CLICK_FEEDBACK_INTERVAL); } } else if(isPressed()) { } mHintPaint.setColor(getCurrentHintTextColor()); CharSequence hint = getHint(); if(hint != null) { int offsetX = getContext().getResources().getDimensionPixelSize(R.dimen.button_hint_offset_x); int offsetY = (int) ((mTextY + getContext().getResources().getDimensionPixelSize(R.dimen.button_hint_offset_y) - mHintPaint.getTextSize()) / 2) - getPaddingTop(); float textWidth = mHintPaint.measureText(hint.toString()); float width = getWidth() - getPaddingLeft() - getPaddingRight() - mTextX - offsetX; float textSize = mHintPaint.getTextSize(); if(textWidth > width) { mHintPaint.setTextSize(textSize * width / textWidth); } canvas.drawText(getHint(), 0, getHint().length(), mTextX + offsetX, mTextY - offsetY, mHintPaint); } getPaint().setColor(getCurrentTextColor()); CharSequence text = getText(); canvas.drawText(text, 0, text.length(), mTextX, mTextY, getPaint()); } public void animateClickFeedback() { mAnimStart = System.currentTimeMillis(); invalidate(); } @Override public boolean onTouchEvent(MotionEvent event) { boolean result = super.onTouchEvent(event); switch(event.getAction()) { case MotionEvent.ACTION_UP: if(isPressed()) { animateClickFeedback(); } else { invalidate(); } break; case MotionEvent.ACTION_DOWN: case MotionEvent.ACTION_CANCEL: mAnimStart = -1; invalidate(); break; } return result; } }