1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
5 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent"
|
|
|
8 |
android:padding="5dp">
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
<com.codesgood.views.JustifiedTextView
|
|
|
12 |
android:id="@+id/fragment_quiz_pass_justifytext"
|
|
|
13 |
style="@style/textview_quiz_title1"
|
4 |
gabriel |
14 |
android:layout_width="335dp"
|
|
|
15 |
android:layout_height="61dp"
|
|
|
16 |
android:fontFamily="@font/roboto"
|
1 |
efrain |
17 |
android:text="@string/label_congratulation_pass_quiz"
|
|
|
18 |
android:textAlignment="center"
|
|
|
19 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
20 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
21 |
app:layout_constraintRight_toRightOf="parent"
|
4 |
gabriel |
22 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
23 |
app:layout_constraintVertical_bias="0.3" />
|
1 |
efrain |
24 |
|
|
|
25 |
<ImageView
|
|
|
26 |
android:layout_width="0dp"
|
|
|
27 |
android:layout_height="0dp"
|
|
|
28 |
android:src="@drawable/ic_cuestionario_pass"
|
|
|
29 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
30 |
app:layout_constraintHeight_percent="0.5"
|
|
|
31 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
32 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
33 |
app:layout_constraintTop_toTopOf="@+id/fragment_quiz_pass_justifytext"
|
|
|
34 |
app:layout_constraintWidth_percent="0.5" />
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
</androidx.constraintlayout.widget.ConstraintLayout>
|