1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-07-03 00:32:36 +02:00
dandelion/app/src/main/res/layout/browser__fragment.xml

21 lines
791 B
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"
android:layout_width="match_parent"
2016-11-06 17:33:22 +01:00
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".activity.MainActivity">
2016-03-03 17:46:31 +01:00
2016-10-26 16:23:14 +02:00
<com.github.dfa.diaspora_android.web.ContextMenuWebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2016-03-03 17:46:31 +01:00
<ProgressBar
android:id="@+id/progressBar"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
2016-03-03 17:46:31 +01:00
android:layout_width="fill_parent"
android:layout_height="7dp"
android:indeterminate="false"
android:progressDrawable="@drawable/progressbar" />
2016-03-03 17:46:31 +01:00
</RelativeLayout>