1<?xml version="1.0" encoding="utf-8"?>
2    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3        android:fitsSystemWindows="true"
4        android:layout_width="match_parent"
5        android:layout_height="match_parent"
6        android:orientation="vertical"
7        style="@style/RootLayoutPadding">
8
9        <TextView android:id="@+id/info"
10            android:layout_width="match_parent"
11            android:layout_height="wrap_content"
12            android:layout_weight="1"
13            android:textSize="18sp"
14            android:padding="5dp"
15            android:text="@string/emergency_call_confirm_info"/>
16        <EditText
17            android:id="@+id/emergency_number"
18            android:layout_height="wrap_content"
19            android:layout_width="match_parent"
20            android:hint="@string/emergency_call_emergency_number_hint_text"
21            android:inputType="phone"
22            android:text="@string/emergency_call_emergency_number_text"/>
23        <EditText
24            android:id="@+id/local_phone_number"
25            android:layout_height="wrap_content"
26            android:layout_width="match_parent"
27            android:hint="@string/emergency_call_current_number_hint_text"
28            android:inputType="phone"/>
29        <Button
30            android:id="@+id/dial_button"
31            android:layout_width="200px"
32            android:layout_height="wrap_content"
33            android:text="@string/emergency_call_dial_text"
34            android:paddingLeft="5dp"
35            android:paddingRight="5dp"
36            android:layout_marginTop="5dp"
37            android:layout_marginRight="5dp"/>
38    </LinearLayout>
39