2015-10-30 16:16:16 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:title="@string/shared_string_help"
|
2017-07-10 11:31:31 +02:00
|
|
|
app:navigationIcon="@drawable/ic_arrow_back"
|
2015-10-30 16:16:16 +01:00
|
|
|
app:theme="?attr/toolbar_theme"
|
|
|
|
android:background="?attr/pstsTabBackground"/>
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/webView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|