Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4984)

Unified Diff: chrome/android/java_staging/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java_staging/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
diff --git a/chrome/android/java_staging/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java b/chrome/android/java_staging/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
new file mode 100644
index 0000000000000000000000000000000000000000..8614c9053fd052686a75879b245899314ae6488d
--- /dev/null
+++ b/chrome/android/java_staging/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
@@ -0,0 +1,72 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.browser.ntp;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.View;
+import android.widget.ExpandableListView;
+
+import org.chromium.ui.base.DeviceFormFactor;
+
+/**
+ * Customized ExpandableListView for the recent tabs page. This class handles tablet-specific
+ * layout implementation.
+ */
+public class RecentTabsExpandableListView extends ExpandableListView {
+ private static final int MAX_LIST_VIEW_WIDTH_DP = 550;
+
+ private int mMaxListViewWidth;
+ private int mSavedListPosition = 0;
+ private int mSavedListTop = 0;
+
+ /**
+ * Constructor for inflating from XML.
+ */
+ public RecentTabsExpandableListView(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ @Override
+ protected void onFinishInflate() {
+ super.onFinishInflate();
+ float density = getResources().getDisplayMetrics().density;
+ mMaxListViewWidth = Math.round(MAX_LIST_VIEW_WIDTH_DP * density);
+ }
+
+ @Override
+ protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
+ if (!DeviceFormFactor.isTablet(getContext())) {
+ super.onMeasure(widthMeasureSpec, heightMeasureSpec);
+ return;
+ }
+
+ // Increase padding if needed to ensure children are no wider than mMaxListViewWidth.
+ int childWidth = MeasureSpec.getSize(widthMeasureSpec);
+ int excessWidth = childWidth - mMaxListViewWidth;
+ int horizontalPadding = 0;
+ if (excessWidth > 0) {
+ horizontalPadding += excessWidth / 2;
+ }
+
+ setPadding(horizontalPadding, 0, horizontalPadding, 0);
+
+ super.onMeasure(widthMeasureSpec, heightMeasureSpec);
+ }
+
+ @Override
+ protected void onAttachedToWindow() {
+ super.onAttachedToWindow();
+ setSelectionFromTop(mSavedListPosition, mSavedListTop);
+ }
+
+ @Override
+ protected void onDetachedFromWindow() {
+ mSavedListPosition = getFirstVisiblePosition();
+ View v = getChildAt(0);
+ mSavedListTop = (v == null) ? 0 : v.getTop();
+ super.onDetachedFromWindow();
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698