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