aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/activity_updater.xml
blob: 37624ea7fda64bcd188d534aa7b5588b8fef36cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="?attr/color_background_tertiary"
    tools:context="${applicationId}.ui.UpdaterActivity">

    <include xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />

    <TextView
        android:id="@+id/updater"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/toolbar"
        android:layout_alignParentTop="false"
        android:layout_centerHorizontal="true"
        android:padding="@dimen/card_padding_regular"
        android:textAppearance="@style/TextAppearance.Conversations.Body1"
        android:textStyle="normal" />

    <ProgressBar
        android:id="@+id/UpdateProgressBar"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true" />

</RelativeLayout>