seedvault/res/layout/progress_popup_window.xml
Steve Soltys 072e9a1b02 Remove Gradle as build system
This application must be compiled with the operating system, so Gradle is unnecessary.
2017-11-08 23:56:49 -05:00

28 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_layout"
android:orientation="vertical">
<TextView
android:id="@+id/popup_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"/>
<ProgressBar
android:id="@+id/popup_progress_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/progress_bar_horizontal_margin"
android:layout_marginRight="@dimen/progress_bar_horizontal_margin"/>
<Button
android:id="@+id/popup_cancel_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/button_horizontal_margin"
android:layout_marginRight="@dimen/button_horizontal_margin"
android:layout_marginTop="@dimen/button_vertical_margin"
android:text="@string/popup_cancel"/>
</LinearLayout>