我正在使用此代码来显示带有URL的图像
的.xaml
的.cs
using System;using System.Collections.Generic;using Xamarin.Forms;namespace LandAHand{ public partial class VolunteerVIEw : ContentPage { public VolunteerVIEw() { InitializeComponent(); backgroundImage.source = new UriImageSource { Uri = new Uri("https://s9.postimg.org/aq1jt3fu7/handshake_87122244_std.jpg"),CachingEnabled = true,CacheValIDity = new TimeSpan(5,0) }; } }}
此代码成功使用iOS但不使用androID.最佳答案嗯,你可以用你的Xaml更容易做到这一点,只需像这样制作你的xaml
并删除后面代码中的相关代码.默认情况下,24小时启用兑现 总结
以上是内存溢出为你收集整理的c# – 显示来自URL Xamarin.Forms的图像全部内容,希望文章能够帮你解决c# – 显示来自URL Xamarin.Forms的图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)