| OLD | NEW |
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 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 |
| 4 found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:tools="http://schemas.android.com/tools" |
| 9 android:layout_width="match_parent" |
| 10 android:layout_height="match_parent" |
| 11 android:orientation="vertical" |
| 12 android:gravity="center"> |
| 13 <WebView |
| 14 android:id="@+id/webview" |
| 15 android:layout_width="match_parent" |
| 16 android:layout_height="280dp" /> |
| 17 <EditText |
| 18 android:id="@+id/edittext" |
| 19 android:inputType="text" |
| 20 android:layout_below="@+id/webview" |
| 21 android:layout_width="match_parent" |
| 22 android:layout_height="60dp" /> |
| 23 </RelativeLayout> |
| 24 |
| OLD | NEW |