|
7 | 7 | android:padding="30dp" |
8 | 8 | tools:context=".WelcomeActivity"> |
9 | 9 |
|
10 | | - <TextView |
11 | | - android:id="@+id/textViewSteps" |
12 | | - android:layout_width="wrap_content" |
13 | | - android:layout_height="wrap_content"/> |
14 | | - |
15 | | - <TextView |
16 | | - android:id="@+id/textViewLimitations" |
17 | | - android:layout_width="wrap_content" |
18 | | - android:layout_height="wrap_content" |
19 | | - app:layout_constraintTop_toBottomOf="@+id/textViewSteps" |
20 | | - android:layout_marginTop="10dp" /> |
21 | | - |
22 | | - <Button |
23 | | - android:id="@+id/buttonClose" |
24 | | - app:layout_constraintTop_toBottomOf="@+id/textViewLimitations" |
25 | | - android:layout_width="wrap_content" |
26 | | - android:layout_height="wrap_content" |
27 | | - app:layout_constraintLeft_toLeftOf="parent" |
28 | | - app:layout_constraintRight_toRightOf="parent" |
29 | | - android:layout_marginTop="10dp"/> |
| 10 | + <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 11 | + android:layout_width="fill_parent" |
| 12 | + android:layout_height="fill_parent" |
| 13 | + android:fillViewport="true" |
| 14 | + android:scrollbarStyle="insideOverlay" |
| 15 | + android:scrollbars="vertical"> |
| 16 | + |
| 17 | + <LinearLayout |
| 18 | + android:id="@+id/linearLayout3" |
| 19 | + android:layout_width="fill_parent" |
| 20 | + android:layout_height="wrap_content" |
| 21 | + android:orientation="vertical"> |
| 22 | + |
| 23 | + <TextView |
| 24 | + android:id="@+id/textViewWelcome" |
| 25 | + android:layout_width="wrap_content" |
| 26 | + android:layout_height="wrap_content" |
| 27 | + android:text="@string/welcome" |
| 28 | + android:textStyle="bold"/> |
| 29 | + |
| 30 | + <TextView |
| 31 | + android:id="@+id/textViewInstallTitle" |
| 32 | + android:layout_width="wrap_content" |
| 33 | + android:layout_height="wrap_content" |
| 34 | + android:layout_marginTop="10dp" |
| 35 | + android:text="@string/installation_title" |
| 36 | + android:textColor="@android:color/holo_blue_dark" |
| 37 | + android:textStyle="bold" |
| 38 | + app:layout_constraintTop_toBottomOf="@+id/textViewWelcome"/> |
| 39 | + |
| 40 | + <TextView |
| 41 | + android:id="@+id/textViewSteps" |
| 42 | + android:layout_width="wrap_content" |
| 43 | + android:layout_height="wrap_content" |
| 44 | + android:text="Install" |
| 45 | + app:layout_constraintTop_toBottomOf="@+id/textViewInstallTitle"/> |
| 46 | + |
| 47 | + <TextView |
| 48 | + android:id="@+id/textViewLimitationsTitle" |
| 49 | + android:layout_width="wrap_content" |
| 50 | + android:layout_height="wrap_content" |
| 51 | + android:text="@string/limitations_title" |
| 52 | + android:textColor="@android:color/holo_blue_dark" |
| 53 | + android:textStyle="bold" |
| 54 | + app:layout_constraintTop_toBottomOf="@+id/textViewSteps"/> |
| 55 | + |
| 56 | + <TextView |
| 57 | + android:id="@+id/textViewLimitations" |
| 58 | + android:layout_width="wrap_content" |
| 59 | + android:layout_height="wrap_content" |
| 60 | + app:layout_constraintTop_toBottomOf="@+id/textViewLimitationsTitle"/> |
| 61 | + |
| 62 | + <Button |
| 63 | + android:id="@+id/buttonClose" |
| 64 | + style="@style/Widget.AppCompat.Button.Colored" |
| 65 | + android:layout_width="wrap_content" |
| 66 | + android:layout_height="wrap_content" |
| 67 | + android:layout_marginTop="10dp" |
| 68 | + app:layout_constraintLeft_toLeftOf="parent" |
| 69 | + app:layout_constraintRight_toRightOf="parent" |
| 70 | + app:layout_constraintTop_toBottomOf="@+id/textViewLimitations"/> |
| 71 | + </LinearLayout> |
| 72 | + |
| 73 | + </ScrollView> |
30 | 74 |
|
31 | 75 | </android.support.constraint.ConstraintLayout> |
0 commit comments