52 lines
1.7 KiB
XML
52 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/header"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<ImageButton
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_weight="1"
|
||
|
android:id="@+id/butAction1"
|
||
|
android:background="?attr/borderless_button"
|
||
|
tools:ignore="ContentDescription"/>
|
||
|
|
||
|
<ImageButton
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_weight="1"
|
||
|
android:id="@+id/butAction2"
|
||
|
android:background="?attr/borderless_button"
|
||
|
tools:ignore="ContentDescription"/>
|
||
|
|
||
|
<ImageButton
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_weight="1"
|
||
|
android:id="@+id/butMoreActions"
|
||
|
android:background="?attr/borderless_button"
|
||
|
android:src="?attr/ic_action_overflow"
|
||
|
android:contentDescription="@string/butAction_label"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="3dp"
|
||
|
android:background="@color/bright_blue"/>
|
||
|
|
||
|
<WebView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/webview"/>
|
||
|
|
||
|
|
||
|
</LinearLayout>
|