添加相机预览

Add a Camera Preview

我希望我的 Activity 背景成为相机(后)视图,到目前为止我已经尝试添加表面视图但没有成功,我找到的教程是关于打开相机应用程序的。 P.S- 我确实想在 SurfaceView/Camera 上添加更多资源。 & 我不想点击图片只预览 因为我没有任何代码可以显示,因为它们不是我需要的,所以这里是 尽管它可能没有必要。

你试过这样的东西吗?

 <?xml version="1.0" encoding="utf-8"?>
 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent" android:layout_height="match_parent">


      <SurfaceView
      android:layout_width="match_parent"
      android:layout_height="match_parent" />

   <!--views on top should come after the surfaceview, 
   at the same level    in the view heirarchy.
   this gives them a higher z-index (i.e. drawn afterwards)
   ... you could also use a RelativeLayout as the root view -->

      <ImageView
      android:layout_width="100dp"
      android:layout_height="100dp" 
      android:layout_gravity="center"/>



 </FrameLayout>