| OLD | NEW |
| (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> |
| OLD | NEW |