summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/f_permission_explanation.xml
blob: 447f12dea6dca44c38a3b4cffc006e894b09bb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>


<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/stdpadding"
    android:layout_margin="@dimen/activity_margin"
    tools:context=".providersetup.fragments.ProviderSelectionFragment">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_margin="@dimen/activity_margin"
        >
        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/tv_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="@style/TextAppearance.AppCompat.Title"
            android:text="@string/title_upcoming_request"
            android:paddingBottom="@dimen/stdpadding"
            />
        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/title_upcoming_request_summary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="@style/TextAppearance.AppCompat.Body1"
            android:text="@string/title_upcoming_request_summary"/>

        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/title_upcoming_connection_request_summary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="@dimen/stdpadding"
            android:textAppearance="@style/TextAppearance.AppCompat.Body1"
            android:visibility="gone"
            tools:visibility="visible"
            android:text="@string/title_upcoming_connection_request_summary"/>

         <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/title_upcoming_notification_request_summary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
             android:paddingTop="@dimen/stdpadding"
             android:visibility="gone"
             tools:visibility="visible"
            android:textAppearance="@style/TextAppearance.AppCompat.Body1"
            android:text="@string/title_upcoming_notification_request_summary"/>
    </androidx.appcompat.widget.LinearLayoutCompat>
</ScrollView>