Android:防止ImageButton覆盖屏幕?

时间:2016-03-08 21:21:09

标签: android android-layout imagebutton android-imagebutton

我有以下LinearLayout,其中包含相机源预览,以及在相机预览之上绘制的叠加层。预览全屏。

现在,当我尝试添加ImageButton来切换正在使用的设备相机(前/后)时,我无法阻止按钮显示全屏,完全覆盖相机预览。我只是希望这个按钮的尺寸正常并位于角落,覆盖相机预览,因此用户可以按下它来更改正在显示的相机预览到前置或后置摄像头。

我已尝试阅读Layouts documentation,按钮和多个教程,但我的按钮似乎无法响应我更改的任何属性。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/topLayout"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:keepScreenOn="true">

    <foo.bar.ui.camera.CameraSourcePreview
      android:id="@+id/preview"
      android:layout_width="match_parent"
      android:layout_height="match_parent">

        <ImageButton
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:id="@+id/switch_camera"
            android:src="@drawable/ic_switch_camera_black_48dp"
            android:paddingLeft="16dp"
            android:paddingBottom="16dp"
            android:clickable="true"
            android:contentDescription="@string/switch_camera"
            android:baselineAlignBottom="false" />

    <foo.bar.ui.camera.GraphicOverlay
        android:id="@+id/faceOverlay"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

  </foo.bar.ui.camera.CameraSourcePreview>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

听起来你可能已经读过这篇文章,但谷歌的Android开发者文档讨论了布局和相机预览: http://developer.android.com/guide/topics/media/camera.html#preview-layout

&#34;以下布局代码提供了一个非常基本的视图,可用于显示相机预览。在此示例中,FrameLayout元素旨在作为摄像头预览类的容器。使用此布局类型,以便可以在实时相机预览图像上叠加其他图片信息或控件。&#34;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout
android:id="@+id/camera_preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>

<Button
android:id="@+id/button_capture"
android:text="Capture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>
</LinearLayout>

如果我理解你的问题是正确的,你有另一个按钮应该切换到当前没有使用的相机,即如果你正在用前置相机拍照,如果你点击按钮它应该切换到后置摄像头,反之亦然。那是对的吗?

如果是这种情况,也许这是另一种可能性(只需记住在下面的第一个LinearLayout中更改YOURPACKAGENAME和活动名称)。两个按钮在LinearLayout中组合在一起,其中FrameLayout用于其上方的摄像头预览:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="YOURPACKAGENAME.MainActivity"
tools:showIn="@layout/activity_main">

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

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <Button
        android:id="@+id/button_capture"
        android:text="Capture"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        />

    <Button
        android:id="@+id/switch_camera_front_back"
        android:text="Switch Camera"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        />

</LinearLayout>

</LinearLayout>