gpt4 book ai didi

android - 如何使 VectorDrawable 适合 ImageView 并删除不必要的填充

转载 作者:行者123 更新时间:2023-11-29 18:39:09 25 4
gpt4 key购买 nike

对于我的 Android 应用程序,我从两个矢量 Drawable 创建了这样的图层列表。

The xml-code

Image Drawable

我想将此图像放入 ImageView,但我无法删除填充问题(标记为红色)enter image description here .

为了解决这个问题,我已经应用了以下步骤:

  1. 将填充显式设置为 0 值
  2. 将“AdjustViewBound”设置为 true
  3. 玩过“fitType”属性。

这些都对我有用。请帮我解决这个问题。

最佳答案

你应该得到一个完整的可绘制对象,圆和人在一个向量中。但是如果你真的需要将这两个文件分开,你必须改变XML代码中的路径。

据此 https://stackoverflow.com/a/50114171/3368784您可以通过重写 primary_dark_color_circle.xml 来调整路径大小作为:

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<group
android:pivotX="12"
android:pivotY="12"
android:scaleX="1.2"
android:scaleY="1.2">
<path
android:fillColor="#0088CC"
android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0" />
</group>
</vector>

关于android - 如何使 VectorDrawable 适合 ImageView 并删除不必要的填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53411647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com