gpt4 book ai didi

android - 在Ruboto中访问/res/drawable文件夹

转载 作者:行者123 更新时间:2023-11-30 02:48:15 31 4
gpt4 key购买 nike

根据我在 Internet 上可以做的所有研究,似乎访问位于/res/drawable 文件夹中的资源(在我的例子中是 .xml 布局文件)以作为 Drawable 返回就像调用这个一样简单行:

Ruboto::R::drawable::stroke_bg

但是,当我尝试这样做时,我收到了以下错误:

could not coerce Fixnum to class android.graphics.drawable.Drawable

我的观点是:

scroll_view :background => Ruboto::R::drawable::stroke_bg, :layout => { :width => :match_parent, height: 1000 }

从该文件夹中获取资源我缺少什么?

最佳答案

Ruboto::R::drawable::stroke_bg 不是 Drawable,而是一个 int 资源 ID。您必须获取实际资源才能将其用作 Drawable。将背景属性更改为如下所示:

背景:resources.getDrawable(Ruboto::R::drawable::stroke_bg)

背景:resources.getDrawable($package.R.drawable.stroke_bg)

关于android - 在Ruboto中访问/res/drawable文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24645600/

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