c# – 显示来自URL Xamarin.Forms的图像

前端之家收集整理的这篇文章主要介绍了c# – 显示来自URL Xamarin.Forms的图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用此代码显示带有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小时启用兑现

原文链接:https://www.f2er.com/android/430035.html

猜你在找的Android相关文章