如下图所示,相机预览的每一侧都有白条。
填充和边距不起作用,我找不到任何使它成为程序定义宽度的东西。 Though, if it was programmatically defined, it'd be found here.
我的XML都是导航抽屉活动预设的默认值,但下面的内容除外:
main_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<eu.livotov.labs.android.camview.ScannerLiveView
android:id="@+id/camview"
android:layout_width="fill_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" >
</android.support.design.widget.NavigationView>
我试图改变我能想到的一切,但我不一定擅长UI
答案 0 :(得分:0)
我的解决方案:
请勿使用eu.livotov.labs.android.camview.ScannerLiveView
我改用com.google.android.cameraview.CameraView
,这是一个可以在Github上找到的库。
既然Google终于为其摄像头API添加了更高级别的支持,我将很快切换到Jetpack CameraX。