d

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     android:id="@+id/linearLayout1"
 3     android:layout_width="fill_parent"
 4     android:layout_height="fill_parent"
 5     android:orientation="horizontal" >
 6     <SurfaceView
 7         android:id="@+id/mySurfaceView"
 8         android:layout_width="fill_parent"
 9         android:layout_height="fill_parent"
10         android:layout_weight="1" />
11     <LinearLayout
12         android:layout_width="fill_parent"
13         android:layout_height="fill_parent"
14         android:gravity="center"
15         android:layout_weight="9"
16         android:background="#daa520"
17         android:orientation="vertical" >
18         <Button
19             android:id="@+id/button01"
20             android:textColor="#ffff00"
21             android:layout_width="60dip"
22             android:layout_height="60dip"
23             android:background="@drawable/backgroundselector"/>
24         <Button
25             android:id="@+id/button03"
26             android:layout_width="60dip"
27             android:layout_height="60dip"
28             android:background="@drawable/btn_camera_record_light_inactive" 
29             android:layout_marginTop="60dip"/>
30         <Button
31             android:id="@+id/button04"
32             android:layout_width="60dip"
33             android:layout_height="60dip"
34             android:background="@drawable/share" 
35             android:layout_marginTop="60dip"/>
36     </LinearLayout>
37 </LinearLayout>
原文地址:https://www.cnblogs.com/GoAhead/p/3006905.html