У меня проблема с наложением изображения поверх предварительного просмотра камеры.Как установить одинаковый размер?Размер видеокадра выглядит фиксированным независимо от настроек макета, а вид изображения меняется в зависимости от настроек макета?
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity">
<TextureView android:id="@+id/textureView1"
android:layout_width="300dp"
android:layout_height="300dp"/>
<ImageView android:id="@+id/imageView1"
android:layout_width="300dp"
android:layout_height="300dp" />
</FrameLayout>