If you think the Android project android-class listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2012 The Android Open Source Project
*/*fromwww.java2s.com*/
* 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.android.deskclock.timer;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.LinearLayout;
import com.android.deskclock.CircleTimerView;
import com.android.deskclock.R;
publicclass TimerListItem extends LinearLayout {
CountingTimerView mTimerText;
CircleTimerView mCircleView;
long mTimerLength;
public TimerListItem(Context context) {
this(context, null);
}
public TimerListItem(Context context, AttributeSet attrs) {
super(context, attrs);
LayoutInflater layoutInflater =
(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
layoutInflater.inflate(R.layout.timer_list_item, this);
}
@Override
protectedvoid onFinishInflate() {
super.onFinishInflate();
mTimerText = (CountingTimerView)findViewById(R.id.timer_time_text);
mCircleView = (CircleTimerView)findViewById(R.id.timer_time);
mCircleView.setTimerMode(true);
}
publicvoid set(long timerLength, long timeLeft, boolean drawRed) {
if (mCircleView == null) {
mCircleView = (CircleTimerView)findViewById(R.id.timer_time);
mCircleView.setTimerMode(true);
}
mTimerLength = timerLength;
mCircleView.setIntervalTime(mTimerLength);
mCircleView.setPassedTime(timerLength - timeLeft, drawRed);
invalidate();
}
publicvoid start() {
mCircleView.startIntervalAnimation();
mTimerText.redTimeStr(false, true);
mTimerText.showTime(true);
mCircleView.setVisibility(VISIBLE);
}
publicvoid pause() {
mCircleView.pauseIntervalAnimation();
mTimerText.redTimeStr(false, true);
}
publicvoid stop() {
mCircleView.stopIntervalAnimation();
mTimerText.redTimeStr(false, true);
mTimerText.showTime(true);
mCircleView.setVisibility(VISIBLE);
}
publicvoid timesUp() {
mCircleView.abortIntervalAnimation();
mTimerText.redTimeStr(true, true);
}
publicvoid done() {
mCircleView.stopIntervalAnimation();
mCircleView.setVisibility(VISIBLE);
mCircleView.invalidate();
mTimerText.redTimeStr(true, false);
}
publicvoid setLength(long timerLength) {
mTimerLength = timerLength;
mCircleView.setIntervalTime(mTimerLength);
mCircleView.invalidate();
}
publicvoid setTextBlink(boolean blink) {
mTimerText.showTime(!blink);
}
publicvoid setCircleBlink(boolean blink) {
mCircleView.setVisibility(blink ? INVISIBLE : VISIBLE);
}
publicvoid setTime(long time, boolean forceUpdate) {
if (mTimerText == null) {
mTimerText = (CountingTimerView)findViewById(R.id.timer_time_text);
}
mTimerText.setTime(time, false, forceUpdate);
}
// Used by animator to animate the size of a timer
@SuppressWarnings("unused")
publicvoid setAnimatedHeight(int height) {
getLayoutParams().height = height;
requestLayout();
}
}