1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-07-05 09:42:37 +02:00
dandelion/app/src/main/res/layout/main__content.xml

29 lines
1.1 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_layout"
2016-03-03 17:46:31 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity.MainActivity"
2016-06-04 11:11:51 +02:00
tools:showIn="@layout/main__app_bar">
2016-03-03 17:46:31 +01:00
<FrameLayout
android:id="@+id/placeholder_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"/>
2016-03-03 17:46:31 +01:00
<ProgressBar
android:id="@+id/progressBar"
2016-06-05 01:42:10 +02:00
app:layout_behavior="@string/appbar_scrolling_view_behavior"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
2016-03-03 17:46:31 +01:00
android:layout_width="fill_parent"
android:indeterminate="false"
2016-03-03 17:46:31 +01:00
android:layout_height="wrap_content"
2016-06-07 19:13:37 +02:00
android:layout_marginTop="-7dp" />
2016-03-03 17:46:31 +01:00
</RelativeLayout>