在monodroid中获得了样式属性

时间:2011-09-08 12:35:10

标签: themes styles gallery xamarin.android

我正在尝试复制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中复制它! 提前致谢, 亚历

1 个答案:

答案 0 :(得分:1)

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

Xamarin还有一个Gallery sample up on their site,它可能比Java版本更有用。