Bug 977155 - Don't animate HomeBanner when it's not visible. r=bnicholson

This commit is contained in:
Margaret Leibovic 2014-02-28 17:26:51 -08:00
Родитель 2988134666
Коммит c74a3d67a0
1 изменённых файлов: 15 добавлений и 10 удалений

Просмотреть файл

@ -138,7 +138,11 @@ public class HomeBanner extends LinearLayout
public void run() {
mTextView.setText(text);
setVisibility(VISIBLE);
animateUp();
// Animate the banner if it is currently enabled.
if (mEnabled) {
animateUp();
}
}
});
} catch (JSONException e) {
@ -168,6 +172,12 @@ public class HomeBanner extends LinearLayout
}
mEnabled = enabled;
// Don't animate if the banner isn't visible.
if (getVisibility() != View.VISIBLE) {
return;
}
if (enabled) {
animateUp();
} else {
@ -176,14 +186,9 @@ public class HomeBanner extends LinearLayout
}
private void animateUp() {
// Check to make sure that message has been received and the banner has been enabled.
// Necessary to avoid race conditions between show() and handleMessage() calls.
if (!mEnabled || TextUtils.isEmpty(mTextView.getText()) || mUserSwipedDown) {
return;
}
// No need to animate if already translated.
if (ViewHelper.getTranslationY(this) == 0) {
// Don't try to animate if the banner is already translated, or if the user swiped
// the banner down previously to hide it.
if (ViewHelper.getTranslationY(this) == 0 || mUserSwipedDown) {
return;
}
@ -193,7 +198,7 @@ public class HomeBanner extends LinearLayout
}
private void animateDown() {
// No need to animate if already translated or gone.
// Don't try to animate if the banner is already translated.
if (ViewHelper.getTranslationY(this) == getHeight()) {
return;
}