2

我正在滚动我自己的相机应用程序,为此我使用了具有横向方向的 SurfaceView 作为标准。

我想要做的是,给 SurfaceView 充气以获得一个按钮。但我希望按钮显示在纵向底部的中心,就像大多数股票相机应用程序一样。我正在充气的按钮的布局如下,我不确定哪种控件组合会给我想要的结果。

我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="right"
    >
<Button
    android:id="@+id/takepicture"  
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text=" * Take Picture " 
        android:layout_alignParentRight="true" 
        android:layout_centerVertical="true" 
    android:layout_margin="10px"
    />
</LinearLayout>

谢谢你的帮助!=]

4

2 回答 2

0

到处玩layout_weight。试试这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="right"
>
<com.YOURSurfaceView android:layout_width="fill_parent" android:background="#ff0" android:layout_weight=".2"
android:layout_height="fill_parent" >

</com.YOURSurfaceView>
<Button
android:id="@+id/takepicture"  
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:text=" * Take Picture " 
    android:layout_weight="1"
android:layout_margin="10px"
/>
</LinearLayout>
于 2012-06-04T03:34:40.630 回答
-1

谢谢阿瑞斯,你的回答。我在这里挖掘了更多,并找到了使用 LinearLayout 的解决方案,但据我了解,一切都有它的位置,但一般来说,RelativeLayout 提供更好的性能,所以我做了一些实验,现在我得到了这个,这对我有用. 请注意,我使用图像作为按钮,因此您可能想要升级它,包括按下其他按钮等并适当地缩放它(这就是我接下来要做的)。但在准系统中,这对我有用。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:baselineAligned="false"
    android:gravity="right"
    android:orientation="horizontal" >
    <RelativeLayout
        android:layout_width="40dp"
        android:layout_height="fill_parent"
        android:gravity="center_vertical" >
        <ImageButton
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@null"
            android:src="@drawable/lens_2" />
    </RelativeLayout>
</RelativeLayout>

以上在我的 SurfaceView 上被夸大了,我这样声明:

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

mPreview = new CameraPreview(this);
setContentView(mPreview);

LayoutInflater controlInflater = LayoutInflater.from(getBaseContext());
View viewControl = controlInflater.inflate(R.layout.control, null);
LayoutParams layoutParamsControl 
    = new LayoutParams(LayoutParams.MATCH_PARENT, 
    LayoutParams.MATCH_PARENT);
this.addContentView(viewControl, layoutParamsControl);

}

希望这可以帮助。

于 2012-06-06T23:20:06.850 回答