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

Side by Side Diff: blimp/client/app/android/java/res/layout/blimp_main.xml

Issue 2542083004: Make //blimp/client/app a real embedder of //blimp/client/public (Closed)
Patch Set: Fix findbugs issue Created 4 years 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
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 <RelativeLayout 7 <RelativeLayout
8 android:id="@+id/container"
8 android:layout_width="match_parent" 9 android:layout_width="match_parent"
9 android:layout_height="match_parent" 10 android:layout_height="match_parent"
10 android:orientation="vertical"> 11 android:orientation="vertical">
11 <!-- Toolbar --> 12 <!-- Toolbar -->
12 <org.chromium.blimp.app.toolbar.Toolbar 13 <org.chromium.blimp.app.toolbar.Toolbar
13 android:id="@+id/toolbar" 14 android:id="@+id/toolbar"
14 android:layout_width="match_parent" 15 android:layout_width="match_parent"
15 android:layout_height="56dp" 16 android:layout_height="56dp"
16 android:layout_alignParentTop="true" 17 android:layout_alignParentTop="true"
18 android:layout_alignParentStart="true"
19 android:layout_alignParentEnd="true"
17 android:paddingStart="5dp" 20 android:paddingStart="5dp"
18 android:orientation="horizontal" 21 android:orientation="horizontal"
19 android:gravity="center" 22 android:gravity="center"
20 android:background="#f2f2f2"> 23 android:background="#f2f2f2">
21 <org.chromium.blimp.app.toolbar.UrlBar 24 <org.chromium.blimp.app.toolbar.UrlBar
22 android:id="@+id/toolbar_url_bar" 25 android:id="@+id/toolbar_url_bar"
23 android:layout_width="0dp" 26 android:layout_width="0dp"
24 android:layout_height="48dp" 27 android:layout_height="48dp"
25 android:layout_weight="1" 28 android:layout_weight="1"
26 android:paddingStart="10dp" 29 android:paddingStart="10dp"
(...skipping 23 matching lines...) Expand all
50 android:layout_width="wrap_content" 53 android:layout_width="wrap_content"
51 android:layout_height="48dp" 54 android:layout_height="48dp"
52 android:paddingEnd="4dp" 55 android:paddingEnd="4dp"
53 android:layout_gravity="center" 56 android:layout_gravity="center"
54 android:background="@null" 57 android:background="@null"
55 android:src="@drawable/btn_menu" /> 58 android:src="@drawable/btn_menu" />
56 </org.chromium.blimp.app.toolbar.Toolbar> 59 </org.chromium.blimp.app.toolbar.Toolbar>
57 60
58 <!-- Content Area --> 61 <!-- Content Area -->
59 <org.chromium.blimp.app.BlimpContentsDisplay 62 <org.chromium.blimp.app.BlimpContentsDisplay
60 android:id="@+id/renderer" 63 android:id="@+id/contents_display"
61 android:layout_width="match_parent" 64 android:layout_width="match_parent"
62 android:layout_height="match_parent" 65 android:layout_height="match_parent"
63 android:layout_below="@+id/toolbar"/> 66 android:layout_alignParentStart="true"
64 67 android:layout_alignParentEnd="true"
65 <include android:id="@+id/debug_stats"
66 layout="@layout/debug_stats_overlay"
67 android:layout_width="wrap_content"
68 android:layout_height="wrap_content"
69 android:layout_alignParentBottom="true" 68 android:layout_alignParentBottom="true"
70 android:visibility="invisible" /> 69 android:layout_below="@id/toolbar" />
71
72 </RelativeLayout> 70 </RelativeLayout>
73 </merge> 71 </merge>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698