|
1 | | -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
2 | | - xmlns:tools="http://schemas.android.com/tools" |
| 1 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 2 | xmlns:app="http://schemas.android.com/apk/res-auto" |
4 | 3 | android:layout_width="match_parent" |
5 | 4 | android:layout_height="match_parent" |
6 | | - android:padding="4dp" |
7 | | - android:animateLayoutChanges="true" |
8 | | - tools:context=".ui.appintro.Intro1Fragment"> |
| 5 | + android:orientation="vertical" |
| 6 | + android:padding="@dimen/medium_margin"> |
9 | 7 |
|
10 | | - <LinearLayout |
11 | | - android:layout_width="match_parent" |
12 | | - android:layout_height="match_parent" |
13 | | - android:orientation="horizontal" |
14 | | - android:padding="24dp" |
15 | | - android:layout_above="@+id/layout_intro_bottom"> |
| 8 | + <androidx.appcompat.widget.AppCompatImageView |
| 9 | + android:layout_width="wrap_content" |
| 10 | + android:layout_height="80dp" |
| 11 | + app:layout_constraintBottom_toTopOf="@+id/appCompatTextView3" |
| 12 | + app:layout_constraintEnd_toEndOf="parent" |
| 13 | + app:layout_constraintStart_toStartOf="parent" |
| 14 | + app:layout_constraintTop_toTopOf="parent" |
| 15 | + app:srcCompat="@drawable/__suicide" |
| 16 | + app:tint="?attr/colorOnSurface" /> |
16 | 17 |
|
17 | | - <androidx.appcompat.widget.AppCompatImageView |
18 | | - android:layout_width="match_parent" |
19 | | - android:layout_height="80dp" |
20 | | - android:layout_gravity="center" |
21 | | - android:src="@drawable/__suicide" |
22 | | - app:tint="?attr/colorOnSurface"/> |
23 | | - |
24 | | - </LinearLayout> |
25 | | - |
26 | | - <LinearLayout |
27 | | - android:id="@+id/layout_intro_bottom" |
28 | | - android:layout_width="match_parent" |
| 18 | + <androidx.appcompat.widget.AppCompatTextView |
| 19 | + android:id="@+id/appCompatTextView3" |
| 20 | + android:layout_width="wrap_content" |
29 | 21 | android:layout_height="wrap_content" |
30 | | - android:layout_alignParentBottom="true" |
31 | | - android:layout_alignParentLeft="true" |
32 | | - android:layout_alignParentStart="true" |
33 | | - android:gravity="center" |
34 | | - android:orientation="vertical" |
35 | | - android:paddingBottom="8dp" |
36 | | - android:paddingLeft="12dp" |
37 | | - android:paddingRight="12dp"> |
38 | | - |
39 | | - <androidx.appcompat.widget.AppCompatTextView |
40 | | - android:layout_width="wrap_content" |
41 | | - android:layout_height="wrap_content" |
42 | | - android:fontFamily="sans-serif-condensed" |
43 | | - android:gravity="center_horizontal" |
44 | | - android:textAppearance="@style/TextAppearance.HEBF.Body2" |
45 | | - android:padding="4dp" |
46 | | - android:text="@string/hebf_sobre_sub" /> |
47 | | - </LinearLayout> |
48 | | - |
| 22 | + android:fontFamily="sans-serif-condensed" |
| 23 | + android:gravity="center_horizontal" |
| 24 | + android:padding="4dp" |
| 25 | + android:text="@string/hebf_sobre_sub" |
| 26 | + android:textAppearance="@style/TextAppearance.HEBF.Body2" |
| 27 | + app:layout_constraintBottom_toBottomOf="parent" |
| 28 | + app:layout_constraintEnd_toEndOf="parent" |
| 29 | + app:layout_constraintStart_toStartOf="parent" /> |
49 | 30 |
|
50 | | -</RelativeLayout> |
| 31 | +</androidx.constraintlayout.widget.ConstraintLayout> |
0 commit comments