diff options
Diffstat (limited to 'src/main/res/layout/activity_show_locaction.xml')
-rw-r--r-- | src/main/res/layout/activity_show_locaction.xml | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/main/res/layout/activity_show_locaction.xml b/src/main/res/layout/activity_show_locaction.xml index 5e164b407..d6b26e6f4 100644 --- a/src/main/res/layout/activity_show_locaction.xml +++ b/src/main/res/layout/activity_show_locaction.xml @@ -1,13 +1,22 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" - android:layout_height="match_parent" - tools:context="ui.ShowLocationActivity"> + android:layout_height="wrap_content" + android:background="?attr/color_background_secondary"> - <WebView - android:id="@+id/webView" + <include + android:id="@+id/toolbar" + layout="@layout/toolbar" /> + + <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" - android:layout_height="match_parent"> - </WebView> + android:layout_height="match_parent" + tools:context="ui.ShowLocationActivity"> + + <WebView + android:id="@+id/webView" + android:layout_width="match_parent" + android:layout_height="match_parent"></WebView> + </RelativeLayout> </RelativeLayout>
\ No newline at end of file |