I am creating a GridView that involves viewing images with text. Images are taken from url and my problem is that they are not uploaded.
Inside the grid element template, I have this element:
<Mvx.MvxImageView android:id="@+id/gridItemImage" android:layout_width="fill_parent" android:layout_height="25dp" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:scaleType="fitXY" local:MvxBind="ImageUrl Image" />
The property associated with ImageUrl also looks like this:
public string Image { get { return @"http://some.image/on/the/Internet.png"; } }
It actually calls a private field, but I wrote a test value that I set.
My question is: what should I do to properly bind ImageUrl and show it in the grid?
xamarin xamarin.android mvvmcross
Maurice Klimek
source share