我正在滚动我自己的相机应用程序,为此我使用了具有横向方向的 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>
谢谢你的帮助!=]