我创建了一个Android应用程序。现在,当方向是垂直的时,图像被正确加载,并且它是正确的,我希望它像这样
` 但是当我水平转动设备时,此图像设置在imageview的左角
imageview的xml如下所示:
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />
what is the reason causing this behavior ?? is it due to
android:scaleType =&#34; matrix&#34;`属性??任何帮助都将受到高度赞赏。