From 006baced4746ddaf31fbd170bcb76abc5f1f8325 Mon Sep 17 00:00:00 2001 From: Chung-yih Wang Date: Thu, 10 Nov 2011 14:00:40 +0800 Subject: Fix several UI bugs. bug:5575970 1. The cancel button of the background replacer message should be on the bottom. 2. The location of recording timer was too low in the landscape mode. 3. Fix the animation of the setting popup. Change-Id: Ia2345e72efc0118cd0172af4bd6243815c602493 --- src/com/android/camera/ui/AbstractIndicatorButton.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/com/android/camera/ui/AbstractIndicatorButton.java b/src/com/android/camera/ui/AbstractIndicatorButton.java index 362becf..fd0f664 100644 --- a/src/com/android/camera/ui/AbstractIndicatorButton.java +++ b/src/com/android/camera/ui/AbstractIndicatorButton.java @@ -44,8 +44,8 @@ public abstract class AbstractIndicatorButton extends RotateImageView implements public AbstractIndicatorButton(Context context) { super(context); - mFadeIn = AnimationUtils.loadAnimation(context, R.anim.grow_fade_in_from_right); - mFadeOut = AnimationUtils.loadAnimation(context, R.anim.shrink_fade_out_from_right); + mFadeIn = AnimationUtils.loadAnimation(context, R.anim.setting_popup_grow_fade_in); + mFadeOut = AnimationUtils.loadAnimation(context, R.anim.setting_popup_shrink_fade_out); HIGHLIGHT_COLOR = context.getResources().getColor(R.color.review_control_pressed_color); setScaleType(ImageView.ScaleType.CENTER); PopupManager.getInstance(context).setOnOtherPopupShowedListener(this); -- cgit v1.1