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"
|
2016-08-07 23:11:47 +02:00
|
|
|
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"
|
2016-06-02 13:58:09 +02:00
|
|
|
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
|
|
|
|
2016-08-07 23:11:47 +02:00
|
|
|
<com.github.dfa.diaspora_android.ui.ContextMenuWebView
|
|
|
|
android:id="@+id/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
|
2016-03-26 01:14:17 +01:00
|
|
|
android:id="@+id/progressBar"
|
2016-06-05 01:42:10 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
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-06-04 19:44:38 +02:00
|
|
|
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>
|