aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/activity_updater.xml
blob: ccc147361bbce1d38c40b8ff984a1dc8c6a7f77a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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"
    tools:context="de.pixart.messenger.ui.UpdaterActivity">

    <TextView android:id="@+id/updater" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" android:layout_marginTop="6dp"
        android:text="Current" android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="normal"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp" />

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

</RelativeLayout>