我希望我的活动背景是Camera(Back)视图,到目前为止我试图添加一个surfaceView但没有运气,我找到的教程是打开相机应用程序。 P.S-我想在SurfaceView / Camera上添加更多资源。 &安培; 我不想只点击图片预览 因为我没有任何代码可以显示,因为它们不是我需要的,所以这里是,尽管它可能没有必要。
答案 0 :(得分:0)
<?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>