|
|
@ -0,0 +1,53 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent"> |
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:padding="12dp"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvPrivacy" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:text="@string/title_privacy" |
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toTopOf="parent" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvPrivacyText" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="12dp" |
|
|
|
android:text="@string/title_privacy_description" |
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvPrivacy" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvPermissions" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="16dp" |
|
|
|
android:text="@string/title_permissions" |
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvPrivacyText" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvPermissionsList" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="12dp" |
|
|
|
android:text="@string/title_permissions_list" |
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvPermissions" /> |
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
</ScrollView> |