1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
|
|
|
3 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
4 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
5 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
6 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
7 |
android:orientation="vertical"
|
|
|
8 |
android:layout_width="match_parent"
|
|
|
9 |
android:layout_height="match_parent"
|
|
|
10 |
android:background="@color/windowBackgroud"
|
|
|
11 |
tools:context=".fragment.IntroFragment">
|
|
|
12 |
|
|
|
13 |
<TextView
|
|
|
14 |
style="@style/textview_title1"
|
|
|
15 |
android:id="@+id/loading_textview_title"
|
|
|
16 |
android:layout_width="wrap_content"
|
|
|
17 |
android:layout_height="wrap_content"
|
|
|
18 |
android:text="@string/loading_title"
|
|
|
19 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
20 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
21 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
22 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
23 |
app:layout_constraintVertical_bias="0.40" />
|
|
|
24 |
|
|
|
25 |
<ProgressBar
|
|
|
26 |
android:id="@+id/loading_progress_bar"
|
|
|
27 |
style="?android:attr/progressBarStyle"
|
|
|
28 |
android:layout_width="wrap_content"
|
|
|
29 |
android:layout_height="wrap_content"
|
|
|
30 |
android:layout_marginTop="30dp"
|
|
|
31 |
app:layout_constraintTop_toBottomOf="@id/loading_textview_title"
|
|
|
32 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
33 |
app:layout_constraintRight_toRightOf="parent" />
|
|
|
34 |
|
|
|
35 |
<TextView
|
|
|
36 |
android:id="@+id/loading_textview_substitle1"
|
|
|
37 |
style="@style/textview_title2"
|
|
|
38 |
android:layout_width="wrap_content"
|
|
|
39 |
android:layout_height="wrap_content"
|
|
|
40 |
|
|
|
41 |
android:textAlignment="center"
|
|
|
42 |
android:text="@string/loading_sub_title"
|
|
|
43 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
44 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
45 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
46 |
app:layout_constraintVertical_bias="0.90"
|
|
|
47 |
android:layout_marginBottom="10dp"/>
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
51 |
|