我在.xml文件中使用ImageView
以全屏模式显示图像时出现问题。
我有4张用于肖像的图片和4张用于横向的图片,尺寸为:
风景:
人像:
xml文件是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" android:background="#fff" android:weightSum="1">
<ImageView
android:id="@+id/paginasplash"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:clickable="false"
android:src="@drawable/screen"
/>
</LinearLayout>
但图像永远不适合屏幕尺寸。同时尝试使用广告android:scaleType="fitXY"
或android:scaleType="centerInside"
等不同设置也可以解决问题。
我能得到的最好的是顶部和底部有一个小边框的图像。
如何在全屏显示图像?
我可以使用不同的维度吗?