1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-06-26 05:24:52 +02:00
dandelion/app/src/main/res/layout/content_main.xml

36 lines
1.4 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:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity.MainActivity"
2016-03-03 17:46:31 +01:00
tools:showIn="@layout/app_bar_main">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe"
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-03-03 17:46:31 +01:00
<com.github.dfa.diaspora_android.ui.ContextMenuWebView
android:id="@+id/webView"
2016-03-03 17:46:31 +01:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true" />
2016-03-03 17:46:31 +01:00
</android.support.v4.widget.SwipeRefreshLayout>
<ProgressBar
android:id="@+id/progressBar"
style="@android:style/Widget.ProgressBar.Horizontal"
2016-03-03 17:46:31 +01:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxHeight="4dip"
android:minHeight="4dip" />
2016-03-03 17:46:31 +01:00
</RelativeLayout>