1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2024 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16
17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
18android:layout_width="match_parent"
19android:layout_height="match_parent"
20android:orientation="vertical">
21
22    <LinearLayout
23        android:layout_width="match_parent"
24        android:layout_height="wrap_content"
25        android:gravity="center"
26        android:orientation="vertical"
27        android:layout_marginTop="8dp">
28
29        <TextView
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content"
32            android:gravity="center"
33            android:text="@string/phr_options_title"
34            android:textSize="20sp"
35            android:textStyle="bold" />
36
37        <Button
38            android:id="@+id/phr_create_data_source_button"
39            android:layout_width="wrap_content"
40            android:layout_height="wrap_content"
41            android:layout_marginTop="8dp"
42            android:minWidth="250dp"
43            android:text="@string/phr_options_create_data_source" />
44
45        <Button
46            android:id="@+id/phr_insert_immunization_button"
47            android:layout_width="wrap_content"
48            android:layout_height="wrap_content"
49            android:layout_marginTop="8dp"
50            android:minWidth="250dp"
51            android:text="@string/phr_options_insert_immunization" />
52
53        <EditText
54            android:id="@+id/phr_immunization_id_text"
55            android:layout_width="wrap_content"
56            android:layout_height="wrap_content"
57            android:layout_marginTop="8dp"
58            android:gravity="center"
59            android:text="@string/phr_options_resource_id_placeholder"
60            android:textSize="12sp" />
61
62        <Button
63            android:id="@+id/phr_read_by_id_button"
64            android:layout_width="wrap_content"
65            android:layout_height="wrap_content"
66            android:layout_marginTop="8dp"
67            android:minWidth="250dp"
68            android:text="@string/phr_options_read_by_id" />
69
70        <Button
71            android:id="@+id/phr_request_read_immunization_button"
72            android:layout_width="wrap_content"
73            android:layout_height="wrap_content"
74            android:layout_marginTop="8dp"
75            android:minWidth="250dp"
76            android:text="@string/phr_options_request_immunization" />
77
78        <Button
79            android:id="@+id/phr_request_read_and_write_medical_data_button"
80            android:layout_width="wrap_content"
81            android:layout_height="wrap_content"
82            android:layout_marginTop="8dp"
83            android:minWidth="250dp"
84            android:text="@string/phr_options_request_medical" />
85
86        <Button
87            android:id="@+id/phr_seed_fhir_jsons_button"
88            android:layout_width="wrap_content"
89            android:layout_height="wrap_content"
90            android:layout_marginTop="8dp"
91            android:minWidth="250dp"
92            android:text="@string/phr_options_seed_fhir_jsons" />
93    </LinearLayout>
94</ScrollView>
95