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        <TextView
10            android:id="@+id/desc"
11            android:layout_width="match_parent"
12            android:layout_height="wrap_content"
13            android:gravity="center"
14            android:minHeight="?android:attr/listPreferredItemHeightSmall"
15            android:paddingLeft="8dp"
16            android:paddingRight="8dp"
17            android:textAppearance="?textAppearanceBodyMedium" />
18
19        <WebView
20            android:id="@+id/webview"
21            android:layout_below="@+id/desc"
22            android:layout_width="match_parent"
23            android:layout_height="match_parent" />
24
25        <ProgressBar
26            android:id="@+id/progressbar"
27            android:layout_width="match_parent"
28            android:layout_height="130dp"
29            android:paddingLeft="8dp"
30            android:paddingRight="8dp"
31            android:paddingBottom="16dp" />
32
33    </RelativeLayout>
34
35</layout>