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 <Button 23 android:id="@+id/dial_button" 24 android:layout_width="200px" 25 android:layout_height="wrap_content" 26 android:text="@string/emergency_call_dial_text" 27 android:paddingLeft="5dp" 28 android:paddingRight="5dp" 29 android:layout_marginTop="5dp" 30 android:layout_marginRight="5dp"/> 31 </LinearLayout> 32