我想知道我是否为Android开发了键盘应用程序,我可以使用相机预览作为键盘的背景吗?
所以我可以写信息,而我可以看到我的面前。
答案 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>