1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:id="@+id/confirmation_container" 3 android:orientation="vertical" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent"> 6 7 <TextView 8 android:layout_width="300dp" 9 android:layout_height="wrap_content" 10 android:layout_marginLeft="24dp" 11 android:layout_marginRight="24dp" 12 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" 13 android:text="@string/evaluated_confirm_send_data" /> 14 15 <Button 16 style="@style/PreferenceButton" 17 android:id="@+id/send_button" 18 android:layout_width="wrap_content" 19 android:layout_height="wrap_content" 20 android:layout_marginLeft="24dp" 21 android:layout_marginRight="24dp" 22 android:text="@string/evaluated_send_report"/> 23</LinearLayout> 24