Android Java 到 C# URL
下面的 Java 代码片段的 C# 等效项是什么:
Drawable image;
URL imageUrl;
imageUrl = new URL(getMyImageUrl(imageNumber));
Bitmap bitmap = BitmapFactory.decodeStream(imageUrl.openStream());
image = new BitmapDrawable(bitmap);
提前致谢。
What is the C# equivalent of the following Java snippet below:
Drawable image;
URL imageUrl;
imageUrl = new URL(getMyImageUrl(imageNumber));
Bitmap bitmap = BitmapFactory.decodeStream(imageUrl.openStream());
image = new BitmapDrawable(bitmap);
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更直接地转换为 C# 是:
这是 Android 版 Mono 的优势之一:类和方法镜像底层 Java 平台(有一些例外),同时提供大部分 .NET 框架,因此将代码从 Java 迁移到 C#应该相当简单。
A more literal conversion to C# would be:
This is one of the strengths of Mono for Android: the classes and methods mirror the underlying Java platform (with some exceptions) while providing much of the .NET framework, so migrating code from Java to C# should be reasonably straightforward.
看看 http://www.dreamincode.net/code/snippet2555.htm 。我假设您想使用位图。我从来没有在Java中使用过Drawable,所以如果我错了请纠正我。
Have a look at http://www.dreamincode.net/code/snippet2555.htm . I assumed you would want to use Bitmap. I have never used Drawable in Java, so correct me if I'm wrong.