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

Side by Side Diff: chrome/android/java/res/layout/main.xml

Issue 1284303004: Keyboard accessory tools on the right side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@icons
Patch Set: separatorPosition Created 5 years, 4 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
« no previous file with comments | « no previous file | ui/android/java/src/org/chromium/ui/autofill/AutofillKeyboardAccessory.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <merge xmlns:android="http://schemas.android.com/apk/res/android"> 6 <merge xmlns:android="http://schemas.android.com/apk/res/android">
7 <LinearLayout 7 <LinearLayout
8 android:layout_width="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="match_parent" 9 android:layout_height="match_parent"
10 android:orientation="vertical"> 10 android:orientation="vertical">
11 11
12 <org.chromium.chrome.browser.compositor.CompositorViewHolder 12 <org.chromium.chrome.browser.compositor.CompositorViewHolder
13 android:id="@+id/compositor_view_holder" 13 android:id="@+id/compositor_view_holder"
14 android:layout_width="match_parent" 14 android:layout_width="match_parent"
15 android:layout_height="0dp" 15 android:layout_height="0dp"
16 android:layout_weight="1" /> 16 android:layout_weight="1" />
17 17
18 <HorizontalScrollView 18 <HorizontalScrollView
19 android:id="@+id/keyboard_accessory" 19 android:id="@+id/keyboard_accessory"
20 android:layout_height="@dimen/keyboard_accessory_height" 20 android:layout_height="@dimen/keyboard_accessory_height"
21 android:layout_width="match_parent" 21 android:layout_width="match_parent"
22 android:background="#FFF" 22 android:background="#FFF"
23 android:fillViewport="true"
23 android:scrollbars="none" 24 android:scrollbars="none"
24 android:visibility="gone" /> 25 android:visibility="gone" />
25 </LinearLayout> 26 </LinearLayout>
26 27
27 <ViewStub 28 <ViewStub
28 android:id="@+id/omnibox_results_container_stub" 29 android:id="@+id/omnibox_results_container_stub"
29 android:layout_width="match_parent" 30 android:layout_width="match_parent"
30 android:layout_height="match_parent" 31 android:layout_height="match_parent"
31 android:layout_marginTop="@dimen/tab_strip_height" 32 android:layout_marginTop="@dimen/tab_strip_height"
32 android:inflatedId="@+id/omnibox_results_container" 33 android:inflatedId="@+id/omnibox_results_container"
(...skipping 18 matching lines...) Expand all
51 android:layout_height="match_parent" 52 android:layout_height="match_parent"
52 /> 53 />
53 <!-- This empty view is used as the anchor for custom menu --> 54 <!-- This empty view is used as the anchor for custom menu -->
54 <View 55 <View
55 android:id="@+id/menu_anchor_stub" 56 android:id="@+id/menu_anchor_stub"
56 android:layout_width="0px" 57 android:layout_width="0px"
57 android:layout_height="0px" 58 android:layout_height="0px"
58 android:layout_gravity="bottom|start" 59 android:layout_gravity="bottom|start"
59 /> 60 />
60 </merge> 61 </merge>
OLDNEW
« no previous file with comments | « no previous file | ui/android/java/src/org/chromium/ui/autofill/AutofillKeyboardAccessory.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698