我正在尝试复制monodroid示例for gallery tutorial。 但是这个例子缺少一个重点:如何设置ImageView的背景样式。 在Android教程中,我们有以下代码:
TypedArray attr = mContext.obtainStyledAttributes(R.styleable.HelloGallery);
mGalleryItemBackground = attr.getResourceId(R.styleable.HelloGallery_android_galleryItemBackground, 0);
attr.recycle();
....
imageView.setBackgroundResource(mGalleryItemBackground);
我不知道我应该如何在monodroid中复制它! 提前致谢, 亚历
答案 0 :(得分:1)
您可以使用ImageView.SetImageResource(int)方法从资源ID加载图片。
Xamarin还有一个Gallery sample up on their site,它可能比Java版本更有用。