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

Side by Side Diff: tools/android/customtabs_benchmark/res/layout/main.xml

Issue 2722733004: customtabs: Benchmark app for WebView / Custom Tabs comparisons. (Closed)
Patch Set: . Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2017 The Chromium Authors. All rights reserved. Use of
3 this source code is governed by a BSD-style license that can be found
4 in the LICENSE file. -->
5
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:tools="http://schemas.android.com/tools"
8 android:id="@+id/activity_main"
9 android:layout_width="match_parent"
10 android:layout_height="match_parent"
11 android:paddingBottom="16dp"
12 android:paddingStart="16dp"
13 android:paddingEnd="16dp"
14 android:paddingTop="16dp"
15 tools:context="org.chromium.customtabs.test.MainActivity"
16 android:orientation="vertical">
17
18 <TextView
19 android:text="@string/url_to_load"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:id="@+id/textView3"
23 android:labelFor="@+id/url_text" />
24
25 <EditText
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:inputType="textUri"
29 android:text="@string/default_url"
30 android:ems="10"
31 android:id="@+id/url_text" />
32 <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
33 android:layout_width="fill_parent"
34 android:layout_height="wrap_content"
35 android:orientation="vertical">
36 <RadioButton android:id="@+id/radio_chrome"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:text="@string/chrome"
40 android:checked="true" />
41 <RadioButton android:id="@+id/radio_webview"
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:text="@string/webview"/>
45 </RadioGroup>
46
47 <CheckBox
48 android:text="@string/warmup"
49 android:layout_width="match_parent"
50 android:layout_height="wrap_content"
51 android:id="@+id/warmup_checkbox" />
52
53 <Button
54 android:text="@string/go"
55 android:layout_width="match_parent"
56 android:layout_height="wrap_content"
57 android:id="@+id/go_button" />
58
59 <TextView
60 android:layout_width="match_parent"
61 android:layout_height="wrap_content"
62 android:id="@+id/textView4" />
63 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698