我有一个简单的方形图像,用于测试拖动缩放和旋转系统。一切正常,但我在将图像居中放置在设备中心时遇到了问题,如图所示(矩阵图像也是如此......我在这里阅读了很多帖子,但没有找到解决方案)。使用下面的代码,图像位于左上角。
xml文件...
<?xml version="1.0" encoding="utf-8"?>
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
tools:context="com.br1dev.myapplication.MainActivity">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/fullImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:contentDescription="@android:string/untitled"
android:scaleType="centerInside"
app:srcCompat="@drawable/f1" />
</RelativeLayout>
相关分类