Как видно на рисунке ниже, с каждой стороны предварительного просмотра камеры есть белые полосы.
Заполнение и поля неработать, и я не могу найти ничего, что делает его программно определенной ширины. Хотя, если бы он был задан программно, он был бы найден здесь.
Все мои 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>
Я пытался изменить все, что мог придумать, но я не обязательно хорош в пользовательском интерфейсе