在 ProMotion 屏幕上设置背景图像的最简单方法?
Simplest way to set a background image on a ProMotion screen?
我只想在屏幕上为占位符设置背景图像。最快、最简单、最简单的方法是什么?我尝试过的所有方法似乎都不起作用。
我应该提一下,这是在 RedPotion 中,所以我已经可以访问 RMQ。
我在我的 RubyTrivia 应用程序的 RedPotion 中正是这样做的。只需为给定的 RedPotion 样式表设置 root_view 样式。在这种情况下,我将背景图像设置为图像资源。
# In an RMQ Stylesheet
def root_view(st)
st.background_image = image.resource('retina_wood')
end
# In a ProMotion Screen
def on_load
find(view).style {|st| st.background_image = image.resource('retina_wood') }
end
请注意,the RMQ implementation of background_image=
将背景设置为平铺(重复)背景图像。所以如果你想填满屏幕,你会想要使用不同的方法,因为它在不同尺寸的屏幕上看起来会有所不同。
我的 RubyTrivia 应用程序是开源的,请尽情享受吧!
https://github.com/IconoclastLabs/rubytrivia
我只想在屏幕上为占位符设置背景图像。最快、最简单、最简单的方法是什么?我尝试过的所有方法似乎都不起作用。
我应该提一下,这是在 RedPotion 中,所以我已经可以访问 RMQ。
我在我的 RubyTrivia 应用程序的 RedPotion 中正是这样做的。只需为给定的 RedPotion 样式表设置 root_view 样式。在这种情况下,我将背景图像设置为图像资源。
# In an RMQ Stylesheet
def root_view(st)
st.background_image = image.resource('retina_wood')
end
# In a ProMotion Screen
def on_load
find(view).style {|st| st.background_image = image.resource('retina_wood') }
end
请注意,the RMQ implementation of background_image=
将背景设置为平铺(重复)背景图像。所以如果你想填满屏幕,你会想要使用不同的方法,因为它在不同尺寸的屏幕上看起来会有所不同。
我的 RubyTrivia 应用程序是开源的,请尽情享受吧!
https://github.com/IconoclastLabs/rubytrivia