我在 android 中使用 SVG 导入的图像,但我无法使用 ImageView 调整它的大小,图像是这样的。
导入的drawable是:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="208dp"
android:height="208dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#8A1D3043"
android:pathData="...lines and curves..."/>
</vector>
当我更改 ImageView(它连接到的位置)layout_height 和 layout_width 时,我得到了这个:
<ImageView
android:layout_height="100dp"
android:layout_width="100dp"
app:layout_width="@{smallScreen ? @dimen/img_small_screen_size : @dimen/img_big_screen_size}"
app:layout_height="@{smallScreen ? @dimen/img_small_screen_size : @dimen/img_big_screen_size}"
android:layout_gravity="center_horizontal"
android:contentDescription="@{message}"
android:src="@{image}"
android:scaleType="center"
tools:src="@drawable/img_message_private"/>
注意vector的高和宽都是208dp,但是我的ImageView必须用100dp。我认为,必须使用 dataBind 动态调整视图的大小,因此不能选择多个向量。
显然图像不随其 ImageView 缩放。有人知道为什么以及如何轻松绕过它吗?