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

Side by Side Diff: chrome/android/java_staging/res/layout/find_in_page.xml

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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5
6 <LinearLayout
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="match_parent"
10 android:orientation="horizontal"
11 android:gravity="center_vertical"
12 style="@android:style/Theme.Holo.Light">
13 <view
14 class="org.chromium.chrome.browser.widget.findinpage.FindToolbar$FindQue ry"
15 android:id="@+id/find_query"
16 android:layout_width="0dp"
17 android:layout_weight="1"
18 android:layout_height="match_parent"
19 android:layout_gravity="center_vertical"
20 android:layout_marginStart="16dp"
21 android:background="@null"
22 android:hint="@string/hint_find_in_page"
23 android:imeOptions="actionSearch|flagNoExtractUi"
24 android:singleLine="true"
25 android:textSize="16sp"
26 android:textColor="@color/find_in_page_query_color" />
27 <TextView
28 android:id="@+id/find_status"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:layout_marginStart="12dp"
32 android:layout_marginEnd="16dp"
33 android:background="@null"
34 android:singleLine="true"
35 android:textSize="12sp"
36 android:textColor="@color/find_in_page_results_status_color" />
37 <View
38 android:id="@+id/find_separator"
39 android:layout_width="1dp"
40 android:layout_height="match_parent"
41 android:layout_marginTop="8dp"
42 android:layout_marginBottom="8dp"
43 android:background="#000000"
44 android:alpha="0.1" />
45 <org.chromium.chrome.browser.widget.TintedImageButton
46 android:id="@+id/find_prev_button"
47 style="@style/ToolbarButton"
48 android:layout_height="match_parent"
49 android:src="@drawable/ic_collapse"
50 android:contentDescription="@string/accessibility_find_toolbar_btn_prev" />
51 <org.chromium.chrome.browser.widget.TintedImageButton
52 android:id="@+id/find_next_button"
53 style="@style/ToolbarButton"
54 android:layout_height="match_parent"
55 android:src="@drawable/ic_expand"
56 android:contentDescription="@string/accessibility_find_toolbar_btn_next" />
57 <org.chromium.chrome.browser.widget.TintedImageButton
58 android:id="@+id/close_find_button"
59 style="@style/ToolbarButton"
60 android:layout_height="match_parent"
61 android:src="@drawable/btn_close"
62 android:contentDescription="@string/close" />
63 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698