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

Side by Side Diff: tools/android/customtabs_benchmark/res/layout/activity_web_view.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 xmlns:app="http://schemas.android.com/apk/res-auto"
9 android:id="@+id/activity_web_view"
10 android:layout_width="match_parent"
11 android:layout_height="match_parent"
12 tools:context="org.chromium.customtabs.test.WebViewActivity"
13 android:orientation="vertical">
14
15 <ProgressBar
16 style="@android:style/Widget.Material.Light.ProgressBar.Horizontal"
17 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
19 android:id="@+id/progress_bar"
20 android:max="100" />
21
22 <WebView
23 android:layout_width="match_parent"
24 android:layout_height="match_parent"
25 android:layout_margin="0dp"
26 android:padding="0dp"
27 android:id="@+id/webview"
28 android:visibility="visible"/>
29 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698