summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/AllAppsTabbed.java
diff options
context:
space:
mode:
authorGilles Debunne <debunne@google.com>2010-10-25 11:23:41 -0700
committerGilles Debunne <debunne@google.com>2010-10-25 11:23:41 -0700
commitdd6c992943a139ce277768b5715e276cfa974f91 (patch)
tree4dd3ffec4435c9be1732500fe0b0bb1fba0a401c /src/com/android/launcher2/AllAppsTabbed.java
parent4c0505dcc2686fcb04ec6340869af4ee825dcb98 (diff)
downloadandroid_packages_apps_Trebuchet-dd6c992943a139ce277768b5715e276cfa974f91.tar.gz
android_packages_apps_Trebuchet-dd6c992943a139ce277768b5715e276cfa974f91.tar.bz2
android_packages_apps_Trebuchet-dd6c992943a139ce277768b5715e276cfa974f91.zip
Made Launcher and AllApps use the new Tabs holo theme.
Style temp settings removed, now provided by default: https://android-git.corp.google.com/g/#change,76118 Hacks to focus first tab removed as it has been fixed in: https://android-git.corp.google.com/g/#change,75393 Bug 3008765 Change-Id: Id9121cf3bfc3be08380bec1a45cf447b5fe96422
Diffstat (limited to 'src/com/android/launcher2/AllAppsTabbed.java')
-rw-r--r--src/com/android/launcher2/AllAppsTabbed.java28
1 files changed, 4 insertions, 24 deletions
diff --git a/src/com/android/launcher2/AllAppsTabbed.java b/src/com/android/launcher2/AllAppsTabbed.java
index cc6a14907..ac6484db8 100644
--- a/src/com/android/launcher2/AllAppsTabbed.java
+++ b/src/com/android/launcher2/AllAppsTabbed.java
@@ -16,24 +16,20 @@
package com.android.launcher2;
-import java.util.ArrayList;
+import com.android.launcher.R;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
-import android.animation.ValueAnimator;
import android.animation.ObjectAnimator;
+import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.Resources;
-import android.graphics.Color;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
-import android.widget.RelativeLayout;
import android.widget.TabHost;
-import android.widget.TabWidget;
-import android.widget.TextView;
-import com.android.launcher.R;
+import java.util.ArrayList;
/**
* Implements a tabbed version of AllApps2D.
@@ -86,18 +82,6 @@ public class AllAppsTabbed extends TabHost implements AllAppsView {
label = mContext.getString(R.string.all_apps_tab_downloaded);
addTab(newTabSpec(TAG_DOWNLOADED).setIndicator(label).setContent(contentFactory));
- // TEMP: just styling the tab widget to be a bit nicer until we get the actual
- // new assets
- TabWidget tabWidget = getTabWidget();
- for (int i = 0; i < tabWidget.getChildCount(); ++i) {
- RelativeLayout tab = (RelativeLayout) tabWidget.getChildTabViewAt(i);
- TextView text = (TextView) tab.getChildAt(1);
- text.setTextSize(20.0f);
- text.setPadding(20, 0, 20, 0);
- text.setShadowLayer(1.0f, 0.0f, 1.0f, Color.BLACK);
- tab.setBackgroundDrawable(null);
- }
-
setOnTabChangedListener(new OnTabChangeListener() {
public void onTabChanged(String tabId) {
// animate the changing of the tab content by fading pages in and out
@@ -106,6 +90,7 @@ public class AllAppsTabbed extends TabHost implements AllAppsView {
ValueAnimator alphaAnim = ObjectAnimator.ofFloat(mAllApps, "alpha", alpha, 0.0f).
setDuration(duration);
alphaAnim.addListener(new AnimatorListenerAdapter() {
+ @Override
public void onAnimationEnd(Animator animation) {
String tag = getCurrentTabTag();
if (tag == TAG_ALL) {
@@ -127,11 +112,6 @@ public class AllAppsTabbed extends TabHost implements AllAppsView {
}
});
- // TEMP: Working around a bug in tab host where the current tab does not initially have a
- // highlight on it by selecting something else, then selecting the actual tab we want..
- setCurrentTab(1);
- setCurrentTab(0);
-
// It needs to be INVISIBLE so that it will be measured in the layout.
// Otherwise the animations is messed up when we show it for the first time.
setVisibility(INVISIBLE);