add collapse animation to tab switcher
Bug: 5087355
if the tab is not the last tab, the tabs collapse smoothly
use animation when close button is used
Change-Id: I5dabcbb30317ff634aafd21b6f1b0e2b902b767e
diff --git a/src/com/android/browser/NavScreen.java b/src/com/android/browser/NavScreen.java
index f52ef88..a361136 100644
--- a/src/com/android/browser/NavScreen.java
+++ b/src/com/android/browser/NavScreen.java
@@ -247,7 +247,7 @@
@Override
public void onClick(View v) {
if (tabview.isClose(v)) {
- onCloseTab(tab);
+ mScroller.animateOut(tabview);
} else if (tabview.isTitle(v)) {
mScroller.setSelection(position);
switchToSelected();