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

Unified Diff: chrome/android/java/res/layout/contextual_search_view.xml

Issue 1050163004: [Contextual Search] Implements Opt-out promo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring Created 5 years, 9 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/res/layout/contextual_search_view.xml
diff --git a/chrome/android/java/res/layout/contextual_search_view.xml b/chrome/android/java/res/layout/contextual_search_view.xml
new file mode 100644
index 0000000000000000000000000000000000000000..508f2a3042905b84dc17b1fb397e383e5e8e8ab5
--- /dev/null
+++ b/chrome/android/java/res/layout/contextual_search_view.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- 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. -->
+
+<!-- Contextual Search view. -->
+<org.chromium.chrome.browser.widget.ContextualSearchControl
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:chrome="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/contextual_search_view"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="bottom"
+ android:background="#FFF"
+ android:gravity="center"
+ android:orientation="horizontal"
+ >
+ <!-- Search Bar Text -->
+ <TextView
+ android:id="@+id/surrounding_text_start"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_marginStart="7dp"
+ android:ellipsize="none"
+ android:fadingEdge="horizontal"
+ android:fadingEdgeLength="30dp"
+ android:gravity="end"
+ android:layout_weight="1"
+ android:requiresFadingEdge="horizontal"
+ android:singleLine="true"
+ android:textColor="#CCC"
+ android:textSize="@dimen/contextual_search_text_size"
+ />
+ <TextView
+ android:id="@+id/main_text"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_marginStart="5dp"
+ android:layout_marginEnd="5dp"
+ android:gravity="center_horizontal"
+ android:ellipsize="end"
+ android:singleLine="true"
+ android:textColor="#000"
+ android:textSize="@dimen/contextual_search_text_size"
+ />
+ <TextView
+ android:id="@+id/surrounding_text_end"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_marginEnd="7dp"
+ android:ellipsize="none"
+ android:fadingEdge="horizontal"
+ android:fadingEdgeLength="30dp"
+ android:gravity="start"
+ android:layout_weight="1"
+ android:requiresFadingEdge="horizontal"
+ android:singleLine="true"
+ android:textColor="#CCC"
+ android:textSize="@dimen/contextual_search_text_size"
+ />
+</org.chromium.chrome.browser.widget.ContextualSearchControl>

Powered by Google App Engine
This is Rietveld 408576698