2016-03-03 17:46:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-11 17:15:26 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/content_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
tools:context=".activity.MainActivity"
|
|
|
|
tools:showIn="@layout/main__app_bar">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
2016-09-05 20:42:57 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/placeholder_webview"
|
2016-08-07 23:11:47 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentStart="true"
|
2016-09-05 20:42:57 +02:00
|
|
|
android:layout_centerVertical="true"/>
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
<ProgressBar
|
2016-03-26 01:14:17 +01:00
|
|
|
android:id="@+id/progressBar"
|
2016-06-04 19:44:38 +02:00
|
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:layout_width="fill_parent"
|
2016-09-11 17:15:26 +02:00
|
|
|
android:layout_height="7dp"
|
2016-06-04 19:44:38 +02:00
|
|
|
android:indeterminate="false"
|
2016-09-11 17:15:26 +02:00
|
|
|
android:progressDrawable="@drawable/progressbar"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|