在 monodroid 中获取StyledAttributes
我正在尝试复制画廊教程的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.