blob: 5079bb60586c38d4d46d64443f405bff732de356 (
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_alignParentTop="false"
android:layout_below="@id/toolbar"
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>
|