webxdc_page.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    <RelativeLayout
 5        android:layout_width="fill_parent"
 6        android:layout_height="fill_parent">
 7
 8        <WebView
 9            android:id="@+id/webview"
10            android:paddingTop="8dp"
11            android:layout_above="@+id/actions"
12            android:layout_width="match_parent"
13            android:layout_height="match_parent" />
14
15        <GridView
16            android:id="@+id/actions"
17            android:background="@color/perpy"
18            android:layout_width="match_parent"
19            android:layout_height="wrap_content"
20            android:layout_alignParentStart="true"
21            android:layout_alignParentLeft="true"
22            android:layout_alignParentBottom="true"
23            android:horizontalSpacing="0dp"
24            android:verticalSpacing="0dp"
25            android:numColumns="2" />
26
27    </RelativeLayout>
28</layout>