gpt4 book ai didi

android - 图层列表内的可绘制矢量正在拉伸(stretch)

转载 作者:行者123 更新时间:2023-12-04 13:42:03 26 4
gpt4 key购买 nike

当我使用内部带有矢量可绘制对象的图层列表时,它在 API 23+ 上运行良好,但不是之前的。

我已启用 vectorDrawables.useSupportLibrary = trueAppCompatDelegate.setCompatVectorFromResourcesEnabled(true) ,但drawable非常拉伸(stretch)。

Left is Oreo 26 and right is Lollipop 21

左边是奥利奥 26,右边是 Lollipop 21

这是可绘制的

<layer-list>
<item>
<shape>
<stroke android:width="0.9dp" android:color="@color/colorPrimaryDark" />
<solid android:color="#FFF" />
<corners android:radius="16dp" />
</shape>
</item>

<item android:drawable="@drawable/arrow_drawable" android:gravity="center_vertical|left" android:left="18dp" />
</layer-list>

这就是应用可绘制对象的地方
<Spinner
android:id="@+id/countrySpinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@drawable/spinner_background"
android:popupBackground="@drawable/spinner_dropdown_background"
android:popupElevation="4dp"
app:popupTheme="@style/PopupTheme"
app:layout_constraintBottom_toTopOf="@id/citySpinner"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.8" />

它在 ConstraintLayout 中,但我无法发布整个布局文件。

我可以做些什么来修复 Pre API 23 的拉伸(stretch)?
在代码中创建整个层列表会有所不同吗?

编辑:之前试过了,忘记加了。
我确实尝试了以下xml

<layer-list>
<item>
<shape>
<stroke android:width="0.9dp" android:color="@color/colorPrimaryDark"/>
<solid android:color="#FFF"/>
<corners android:radius="16dp"/>
</shape>
</item>

<item android:left="18dp">
<bitmap android:src="@drawable/arrow_drawable" android:gravity="center_vertical|left"/>
</item>
</layer-list>

但这使得应用程序一开始说 android.content.res.Resources$NotFoundException: File res/drawable/spinner_background.xml from drawable resource ID #0x7f0700de 就崩溃了。这可能没有多大意义。这就是 Android Studio 中的预览显示的内容

enter image description here

最佳答案

documentation for layer-list drawables状态:

All drawable items are scaled to fit the size of the containing View, by default. Thus, placing your images in a layer list at different positions might increase the size of the View and some images scale as appropriate. To avoid scaling items in the list, use a <bitmap> element inside the <item> element to specify the drawable and define the gravity to something that does not scale, such as "center".



试试这个:
<layer-list>
<item>
<shape>
<stroke android:width="0.9dp" android:color="@color/colorPrimaryDark" />
<solid android:color="#FFF" />
<corners android:radius="16dp" />
</shape>
</item>

<item android:left="18dp">
<bitmap
android:src="@drawable/arrow_drawable"
android:gravity="center_vertical|left"/>
</item>
</layer-list>

关于android - 图层列表内的可绘制矢量正在拉伸(stretch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55748282/

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