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