I have two activities. In one jpeg fullHD picture is added via ImageView, in other same picture via backgound to root layout. Both are displayed correctly on Studio 1.4 design view and on device Android 4.4 with smaller then FullHD screen, my colleage tested app on couple other devices - ok. However, AFAIK same builds on Android 5.1 FullHD screen shows just black in both activities. Tried to load converted to png picture - same black area.
What could be the issue with last device? Code just in case below:
LinearLayout 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:background="@drawable/background_pic_1080x1920"
android:orientation="vertical">
and
<ImageView
android:id="@+id/main_backgroundImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop"
android:src="@drawable/background_fullhd" />