mirror of
https://github.com/gsantner/dandelion
synced 2024-11-16 17:32:08 +01:00
21 lines
No EOL
791 B
XML
21 lines
No EOL
791 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".activity.MainActivity">
|
|
|
|
<com.github.dfa.diaspora_android.web.ContextMenuWebView
|
|
android:id="@+id/webView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="7dp"
|
|
android:indeterminate="false"
|
|
android:progressDrawable="@drawable/progressbar" />
|
|
|
|
</RelativeLayout> |