MonoTouch.Dialog:没有ImageUrl时,StyledStringElement上的默认图像

时间:2012-09-06 23:54:31

标签: ios xamarin.ios monotouch.dialog

我正在设置ImageUrl的{​​{1}},但不知道网址是否存在。我想在成功下载图片之前加入StyledStringElement

placeholder image

我现在知道了:

enter image description here

1 个答案:

答案 0 :(得分:2)

有帮助:http://yusinto.blogspot.ca/2012/05/background-image-downloading-with.html

我将StyledStringElement复制到新StyledStringElementLoader并编辑了此代码:

    if (extraInfo.Uri != null)
    {   img = ImageLoader.DefaultRequestImage (extraInfo.Uri, this);
        if(img==null)
            img=myLoaderImagePassedToConstructor;
    }