28 lines
1.1 KiB
XML
28 lines
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>
|