Blame view

app/src/main/res/layout/activity_welcome.xml 1.05 KB
7f095a929   chudinhbka@gmail.com   Create GIT Project
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
  <?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=".activity.MainActivity">
  
      <ProgressBar
          android:id="@+id/progressBar"
          style="?android:attr/progressBarStyleLarge"
          android:layout_width="60dp"
          android:layout_height="60dp"
          android:layout_centerHorizontal="true"
          android:layout_centerVertical="true"
          android:layout_gravity="center_horizontal"
          android:indeterminateDrawable="@drawable/progress_circular"/>
      <TextView
          android:layout_marginTop="10dp"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/loading"
          android:textColor="@android:color/black"
          android:layout_below="@id/progressBar"
          android:layout_centerHorizontal="true"/>
  </RelativeLayout>