1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:fitsSystemWindows="true" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:gravity="center" 6 android:background="@android:color/black" 7 android:padding="5dp" 8 android:orientation="vertical" > 9 10 <TextView 11 android:id="@+id/instru" 12 android:layout_width="match_parent" 13 android:layout_height="match_parent" 14 android:layout_weight="5" /> 15 16 <Button 17 android:id="@+id/ok" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:text="@string/hifi_ultrasound_test_ok" 21 android:layout_weight="1" /> 22</LinearLayout> 23