本文整理匯總了TypeScript中tns-core-modules/image-source.ImageSource.fromResource方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ImageSource.fromResource方法的具體用法?TypeScript ImageSource.fromResource怎麽用?TypeScript ImageSource.fromResource使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tns-core-modules/image-source.ImageSource
的用法示例。
在下文中一共展示了ImageSource.fromResource方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: onSrcPropertySet
public static onSrcPropertySet(nativeWrapper, value) {
let image = nativeWrapper,
placeholder = nativeWrapper.placeholder,
placeholderImage = this.getPlaceholderUIImage(placeholder);
if (types.isString(value)) {
value = value.trim();
if (0 === value.indexOf("http")) {
image.isLoading = true;
image.nativeView.sd_setImageWithURLPlaceholderImageCompleted(value, placeholderImage, function() {
image.isLoading = false;
});
} else if (utils.isFileOrResourcePath(value)) {
image.isLoading = true;
let source: any = new imageSource.ImageSource();
if (0 === value.indexOf(utils.RESOURCE_PREFIX)) {
let path = value.substr(utils.RESOURCE_PREFIX.length);
source.fromResource(path).then(function() {
image.isLoading = false;
image.nativeView.image = source.ios || source.nativeView;
});
} else {
source.fromFile(value).then(function() {
image.isLoading = false;
image.nativeView.image = source.ios || source.nativeView;
});
}
}
image.requestLayout();
}
}