我正在开发Xamarin表单跨平台应用,我需要更改默认的启动屏幕图像。 我从资产目录和午餐屏幕更改了启动屏幕图像,但是当应用程序启动时,图像显示较小,并以默认的xamarin背景颜色为背景。
我如何改变呢?
答案 0 :(得分:2)
您检查了LaunchScreen.storyboard文件吗? https://developer.xamarin.com/guides/ios/application_fundamentals/working_with_images/launch-screens/
答案 1 :(得分:0)
也许您需要检查图像尺寸并在Resources / LaunchScreen.storyboard文件(颜色标签)中更改启动屏幕的背景颜色。
如果您需要启动屏幕背景色为白色:
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
如果您需要启动屏幕背景色为黑色:
<color key="backgroundColor" red="0" green="0" blue="0" alpha="1" colorSpace="calibratedRGB"/>