- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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'、2'、3'是正确的,但为什么第一行的第三张图像不正确?此外,在同一屏幕和其他列中还有另一个图像具有相同的问题。所有图像具有相同的大小
最佳答案
Set this to true if you want the ImageView to adjust its bounds to preserve the aspect ratio of its drawable.
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
关于Android:ScaleType ="fitXY"不适用于所有图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45624901/
我的 Android 应用程序出现异常行为。我有这个 XML 配置 但是当我运行应用程序时,结果是这样的 图像1'、2'、3'是正确的,但为什么第一行的第三张图像不正确?此
我不知道为什么 scaleType 不适用于这个 ImageView。 widthGrayBlock 是正确的,我用黑色背景检查了它。 ImageView 具有正确的宽度和高度,但图像资源不适合它
我使用下面的代码来显示我的按钮 (因为我需要在按钮上添加文字,所以我不会使用ImageButton) 但是ImageView在View中会有一些空白区域 我认为“fitXY”会填充 Vi
我已经尝试了很长时间来设置位图,使其适合 ImageView 边界。 它只是不能通过 scaleType: fitXY 工作。我的位图图像尺寸小于 ImageView(保存为 100X100 像素),
我无法理解我的 ImageView 无法缩放以填满整个屏幕。 两侧似乎有一些空白。 我的意思是: 我的.xml: 我不明白什么?谢谢。 最佳答案 删除所有这些填充: android:pa
我从 AOSP 壁纸选择器中获得了以下代码,我尝试简单地将我的壁纸预览图像显示为平板电脑上的 centerCrop 和手机上的 FitXY,仅仅是因为壁纸图像可能不够大,无法填充 Activity 平
我需要知道他如何获取可绘制对象。我在数组中收集了一些 ImageView 对象,它们有分辨率相当大的背景图像,所以它们占用了大量内存......我在某处读到它会自动创建我的 imageView 具有的
我的代码中有 ImageView,它位于 CardView 内,如下所示。我的 ImageView scaleType="fitXY"在 pre-lollipop 设备上不工作。但它在 Lollipo
我有一个缩略图,其行为非常奇怪。我已将其参数设置为 match_parent 以及 android:scaleType="fitXY" 并且似乎都对缩略图没有任何影响(所需的行为是填充到屏幕边缘)。
我是一名优秀的程序员,十分优秀!