Мне интересно, но я все еще не могу найти проблему.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="48dp"/>
<ImageView
android:src="@drawable/someImage"
android:id="@+id/kioskModeImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
Для приведенной выше структуры мой ImageView сокращается по бокам иу меня есть странные поля слева и справа, из которых я не знаю, откуда они.
Когда я удаляю FrameLayout из LinearLayout (и имею ImageView только как одно целое) в контейнере, все работает как ожидалось- изображение занимает все место, так как match_parent должен работать
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/customer_dark_1"
android:id="@+id/kioskModeImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
Что вызывает эту проблему?