command_webview.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android"
 3    xmlns:app="http://schemas.android.com/apk/res-auto">
 4
 5    <RelativeLayout
 6        android:layout_width="fill_parent"
 7        android:layout_height="fill_parent">
 8
 9        <WebView
10            android:id="@+id/webview"
11            android:layout_width="match_parent"
12            android:layout_height="match_parent" />
13
14        <ProgressBar
15            android:id="@+id/progressbar"
16            android:layout_width="match_parent"
17            android:layout_height="130dp"
18            android:paddingLeft="8dp"
19            android:paddingRight="8dp"
20            android:paddingBottom="16dp" />
21
22    </RelativeLayout>
23
24</layout>