【问题标题】:Android Studio Camera2 preview screen cannot add UIAndroid Studio Camera2预览画面无法添加UI
【发布时间】:2020-06-12 03:10:08
【问题描述】:

Android Studio Camera2 预览画面无法添加 UI。 我想知道我是否可以在相机预览屏幕上添加其他 UI? (标题栏、按钮、文本等) 我尝试在 XML 设置中添加上述 UI 元素,但在执行过程中仍然没有响应。

以下是我的activity_main.xml代码:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="657dp"
        android:background="#000"
        android:orientation="vertical"
        tools:context=".MainActivity">
    </FrameLayout>

</RelativeLayout>

以下是我的fragment_camera.xml代码:

    <?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:orientation="vertical"
    tools:context=".CameraFragment">

    <com.lightweh.camera2preview.AutoFitTextureView
        android:id="@+id/textureView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"/>

</FrameLayout >

其他代码可以参考:https://github.com/xGonZh10n/Camera2Preview

【问题讨论】:

    标签: java xml android-studio layout android-camera2


    【解决方案1】:

    有什么错误吗?你能告诉我们错误日志吗?检查您在 Android 清单中的权限。也许你错过了这一行。

    <uses-permission android:name="android.permission.CAMERA" />
    

    我有一个建议给你。 Camera2API 比其他自定义库更容易集成。 参考:https://developer.android.com/guide/topics/media/camera

    【讨论】:

    • 嗨@Kai Pham 这个项目没有产生任何错误;只是在 .xml 被编辑和修改(添加按钮或文本)之后,没有任何反应。在项目中,Camera2preview> manifests> AndroidManifest.xml 已添加:&lt;uses-permission android:name="android.permission.CAMERA" /&gt;
    猜你喜欢
    • 2017-09-09
    • 1970-01-01
    • 1970-01-01
    • 2017-02-25
    • 1970-01-01
    • 2017-02-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多