我可以将相机预览用作自定义键盘的背景吗?

时间:2016-10-25 05:39:17

标签: android keyboard android-camera

我想知道我是否为Android开发了键盘应用程序,我可以使用相机预览作为键盘的背景吗?

所以我可以写信息,而我可以看到我的面前。

1 个答案:

答案 0 :(得分:0)

在FrameLayout内部使用上面的相机预览库https://github.com/google/cameraview添加自定义键盘。

<FrameLayout
android:width="match_parent"
android:height="as you like">

<com.google.android.cameraview.CameraView
android:id="@+id/camera"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:keepScreenOn="true"
android:adjustViewBounds="true"
app:autoFocus="true"
app:aspectRatio="4:3"
app:facing="back"
app:flash="auto"/>

<customized keyboard/>

</FrameLayout>