gpt4 book ai didi

android - 你如何以编程方式填充在 xml 中定义的矩形

转载 作者:行者123 更新时间:2023-11-29 02:04:54 25 4
gpt4 key购买 nike

我有一个简单的 Android 项目,其中有一个在 xml 中定义的矩形,但我找不到以编程方式用纯色填充它的方法。

main.xml文件有以下内容

<ImageView
android:id="@+id/Smoke20"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/editText2"
android:layout_marginLeft="26dp"
android:src="@drawable/zonebox" />

其中zonebox在res/drawable/zonebox.xml中定义如下

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"

android:shape="rectangle" >

<size
android:width="80sp"
android:height="20sp" />

<stroke
android:width="1dp"
android:color="#88888888" />

<!-- solid
android:color="#0A0" />
-->
</shape>

在我的代码中,例如,我可以更改矩形边界的颜色像

int colourBox = getResources().getColor(R.color.fire2_fire_color);
View rectTest = findViewById(R.id.Smoke20);
rectTest.setBackgroundColor(colourBox);

但我无法在代码中复制“solid”属性,该属性很容易在 xml 中完成,如图所示已注释掉。显然,我的做法是错误的,但经过大量研究后,我仍然一头雾水。

我查看了如下获取 xml 资源的方法,但这也没有提供合适的方法来填充矩形。

ShapeDrawable viewTest = (ShapeDrawable)getResources().getDrawable(R.id.Smoke20);

谢谢

最佳答案

迟到的答案,但也许有帮助...我在可绘制形状方面遇到了类似的问题。我试图访问我的可绘制形状并发现可绘制形状是一个 GradientDrawable。因此,如果您想获得访问权限,请尝试以下操作:

    GradientDrawable yourShape = (GradientDrawable)getResources().getDrawable(
R.drawable.yourShape);

关于android - 你如何以编程方式填充在 xml 中定义的矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10571276/

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