gpt4 book ai didi

Android:是否可以缩放 xml 可绘制对象?

转载 作者:可可西里 更新时间:2023-11-01 19:07:47 26 4
gpt4 key购买 nike

这是我想要做的:我有这个比例 xml:

<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/mydrawable"
android:scaleGravity="bottom"
android:scaleHeight="50%" />

我想将它与这个可绘制的 xml 一起使用:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#FFFFFFFF"
android:endColor="#FFFF0000"
android:angle="90" />
</shape>
</item>
</layer-list>

然后我将缩放 xml 设置为 LinearLayout 的背景,但我什么也没看到。我是不是遗漏了什么或者无法做到这一点(使用 XML)?

最佳答案

这是 ScaleDrawable 对象的问题,无法在 XML 中解决。

但这很简单,只需执行以下操作:

// Get the scale drawable from your resources
ScaleDrawable scaleDraw = (ScaleDrawable)getResources().getDrawable(R.drawable.background_scale);
// set the Level to 1 (or anything higher than 0)
scaleDraw.setLevel(1);

// Now assign the drawable where you need it
layout.setBackgroundDrawable(scaleDraw);

我使用此解决方案测试了您的代码,它运行良好。

关于Android:是否可以缩放 xml 可绘制对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7256506/

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