如何在按钮上添加全屏自定义相机视图,例如:snapchat

时间:2017-07-18 10:49:30

标签: android

https://i.stack.imgur.com/WEuH3.png

我希望像这样的布局全屏相机和按钮放在那里像Snapchat视图。

1 个答案:

答案 0 :(得分:0)

您可以通过以下内容执行此操作

<RelativeLayout 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" />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:text="Click"/></RelativeLayout>

此处表面视图将作为相机预览屏幕。如果您想在屏幕上添加更多视图,您可以在表面视图下方添加这些视图,这些视图将显示在相机的屏幕上