resolved conflicts for merge of f7fb5331 to kraken

Change-Id: I61258dd7c7e52a6251c1d9499e113401ff375b20
This commit is contained in:
Jean-Baptiste Queru
2010-05-17 13:50:32 -07:00

View File

@@ -947,4 +947,20 @@ public class ProgressBar extends View {
setProgress(ss.progress);
setSecondaryProgress(ss.secondaryProgress);
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
if (mIndeterminate) {
startAnimation();
}
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
if (mIndeterminate) {
stopAnimation();
}
}
}