在Android中重叠Camera Preview上的其他视图

时间:2016-09-12 22:18:18

标签: android android-camera

我正在关注Android开发人员的Camera API指南(现在使用v1)。我找不到重叠视图的方法(在我的例子中是预览顶部的imagebutton / imageview)。我正在使用frameLayout。这是布局代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.blackfruit.camfilters.CameraActivity"
    android:orientation="vertical"
 >

 <FrameLayout
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:id="@+id/cameraPreview"
     android:layout_weight="1">

  <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/imageView"
      android:src="@drawable/snap"
      android:layout_gravity="bottom|center"
      android:layout_marginBottom="20dp"
      />

 </FrameLayout>
</RelativeLayout>

我知道还有其他方法,例如使用surfaceview和linearlayout。但我正在弄清楚这种方法的问题。我见过有人说这完全有效但是我并不意味着我只看到相机预览而不是任何按钮或图像重叠。 任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

经过反复试验。我以某种方式设法解决了这个问题。我使用了myImageView.bringToFront();

最终解决了这个问题。