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 |
android:id="@+id/fragment_finish_topic_textview_title"
|
|
|
15 |
style="@style/textview_title_big"
|
|
|
16 |
android:layout_width="wrap_content"
|
|
|
17 |
android:layout_height="wrap_content"
|
|
|
18 |
android:text="@string/label_100"
|
|
|
19 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
20 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
21 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
22 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
23 |
app:layout_constraintVertical_bias="0.30" />
|
|
|
24 |
|
|
|
25 |
<TextView
|
|
|
26 |
style="@style/textview_title2"
|
|
|
27 |
android:id="@+id/fragment_finish_topic_congratulation_finish_topic"
|
|
|
28 |
android:layout_width="wrap_content"
|
|
|
29 |
android:layout_height="wrap_content"
|
|
|
30 |
android:text="@string/label_congratulation_finish_topic"
|
|
|
31 |
android:layout_marginTop="30dp"
|
|
|
32 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_topic_textview_title"
|
|
|
33 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
34 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
35 |
|
|
|
36 |
<Button
|
|
|
37 |
style="@style/button_intro"
|
|
|
38 |
android:id="@+id/fragment_finish_topic_button"
|
|
|
39 |
android:layout_width="0dp"
|
|
|
40 |
android:layout_height="wrap_content"
|
|
|
41 |
android:layout_marginTop="40dp"
|
|
|
42 |
android:text="@string/button_continue"
|
|
|
43 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
44 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
45 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_topic_congratulation_finish_topic"
|
|
|
46 |
app:layout_constraintWidth_percent="0.5" />/><![CDATA[
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
/>
|
|
|
50 |
|
|
|
51 |
]]>
|
|
|
52 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
53 |
|