我的Android应用程序上有一个奇怪的行为。我有这个XML配置
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"/>
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem" />
</LinearLayout>
但是当我运行应用程序时,结果就是这个
图像1&#39;,2&#39;和3&#39;是正确的,但为什么第一行的第三张图片不正确?此外,在同一屏幕和其他列中存在具有相同问题的另一图像。所有图像都具有相同的大小
答案 0 :(得分:2)
如果希望ImageView调整其边界,请将此项设置为true 保留其可绘制的宽高比。
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>