2

我有一个带相机的小应用程序,我有一个没有问题的设备,但如果我可以更改应用程序,它的美感会大大提高。

我把活动的xml代码:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:id="@+id/layout">



    <FrameLayout 
        android:id="@+id/preview"
        android:layout_weight="1" 
        android:layout_width="fill_parent"
        android:layout_height="0dip">

    </FrameLayout>



    <Button
        android:id="@+id/buttonClick"
        android:layout_width="109dp"
        android:layout_height="105dp"
        android:layout_gravity="center"
        android:background="@drawable/obutrador2" >

    </Button>

</LinearLayout>

当我运行应用程序时,按钮占据的屏幕的整个高度都有一条白色条纹。我该如何解决这个问题?它会使按钮出现在相机正在捕获的图像上方,作为具有默认手机的应用程序。

问题是如何定位框架布局,使其充满屏幕并将按钮置于底部中心。如果我将 FrameLayout 全屏显示,则该按钮会消失。

我留下了一张照片的链接: https ://www.dropbox.com/s/jbns8jddtwxjhdp/IMAG0348.jpg

4

1 回答 1

1

我认为您应该像这样在 FrameLayout 中定义 Button 。您可以将 FrameLayout 作为父布局,并且可以将按钮放置在任何您想要的位置

<FrameLayout 
        android:id="@+id/preview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    <Button
        android:id="@+id/buttonClick"
        android:layout_width="109dp"
        android:layout_height="105dp"
        android:layout_gravity="center"
        android:background="@drawable/obutrador2" >

    </Button>

</FrameLayout>

希望这对你有用......谢谢

于 2013-02-23T01:29:24.593 回答