mirror of
https://github.com/gsantner/dandelion
synced 2024-11-26 14:22:08 +01:00
31 lines
No EOL
1.2 KiB
XML
31 lines
No EOL
1.2 KiB
XML
<?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"
|
|
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">
|
|
|
|
<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_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:indeterminate="false"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="-7dp" />
|
|
|
|
</RelativeLayout> |