Searched refs:CircleView (Results 1 – 2 of 2) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/widget/ |
D | CircleView.java | 35 public class CircleView extends View { class 41 public final static Property<CircleView, Integer> FILL_COLOR = 42 new Property<CircleView, Integer>(Integer.class, "fillColor") { 44 public Integer get(CircleView view) { 49 public void set(CircleView view, Integer value) { 58 public final static Property<CircleView, Float> RADIUS = 59 new Property<CircleView, Float>(Float.class, "radius") { 61 public Float get(CircleView view) { 66 public void set(CircleView view, Float value) { 81 public CircleView(Context context) { in CircleView() method in CircleView [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmActivity.java | 60 import com.android.deskclock.widget.CircleView; 208 final CircleView pulseView = (CircleView) mContentView.findViewById(R.id.pulse); in onCreate() 224 PropertyValuesHolder.ofFloat(CircleView.RADIUS, 0.0f, pulseView.getRadius()), in onCreate() 225 PropertyValuesHolder.ofObject(CircleView.FILL_COLOR, AnimatorUtils.ARGB_EVALUATOR, in onCreate() 571 final CircleView revealView = new CircleView(this) in getAlertAnimator() 580 revealView, CircleView.RADIUS, startRadius, endRadius); in getAlertAnimator()
|