在 monodroid 中获取StyledAttributes

发布于 2024-12-03 23:53:06 字数 437 浏览 2 评论 0原文

我正在尝试复制画廊教程的 monodroid 示例。 但这个例子缺少一个重要的点:如何设置ImageView的背景样式。 在 Android 教程中,我们有以下代码:

 TypedArray attr = mContext.obtainStyledAttributes(R.styleable.HelloGallery);
    mGalleryItemBackground = attr.getResourceId(R.styleable.HelloGallery_android_galleryItemBackground, 0);
    attr.recycle();

    ....

    imageView.setBackgroundResource(mGalleryItemBackground);

我不知道如何在 monodroid 中复制它! 提前致谢, 亚历克斯

I'm trying to replicate monodroid example for gallery tutorial.
But the example is missing one important point : how to set the background style of ImageView.
On Android tutorial we have the following code :

 TypedArray attr = mContext.obtainStyledAttributes(R.styleable.HelloGallery);
    mGalleryItemBackground = attr.getResourceId(R.styleable.HelloGallery_android_galleryItemBackground, 0);
    attr.recycle();

    ....

    imageView.setBackgroundResource(mGalleryItemBackground);

I have no idea how should I replicate it in monodroid !
Thanks in advance,
Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽梦忆笙歌 2024-12-10 23:53:06

您可以使用 ImageView .SetImageResource(int) 方法从资源 Id 加载图像。

Xamarin 的网站上还有一个图库示例,它可能比Java版本。

You can use the ImageView.SetImageResource(int) method to load an image from a resource Id.

Xamarin also has a Gallery sample up on their site that might be more useful to you than the Java version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文