This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using MonoTouch.CoreFoundation; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
using MonoTouch.Dialog; | |
namespace FbGroups | |
{ | |
public class UrlImageStringElement<TKey> : ImageStringElement, MonoTouch.UrlImageStore.IUrlImageUpdated<TKey> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using MonoTouch.UIKit; | |
using MonoTouch.UrlImageStore; | |
namespace FbGroups | |
{ | |
public class UrlImageStoreExample : IUrlImageUpdated<string> | |
{ | |
//Event to raise when our image is lazily loaded | |
public delegate void ImageLoadedDelegate(string id, UIImage image); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Drawing; | |
using MonoTouch.CoreFoundation; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
namespace FbGroups | |
{ | |
public class LoadMoreElement : MonoTouch.Dialog.Element | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Drawing; | |
using MonoTouch.UIKit; | |
using MonoTouch.CoreGraphics; | |
using MonoTouch.Dialog; | |
using MonoTouch.Foundation; | |
using MonoTouch.CoreFoundation; | |
namespace FbGroups | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Drawing; | |
using MonoTouch.UIKit; | |
using MonoTouch.CoreFoundation; | |
using MonoTouch.CoreGraphics; | |
using MonoTouch.Foundation; | |
namespace MonoTouch.Dialog | |
{ | |
public abstract class OwnerDrawnElement : Element, IElementSizing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MonoDroid.CustomList | |
{ | |
public class Animal | |
{ | |
public string Name | |
{ | |
get; | |
set; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:id="@+id/widget28" | |
android:layout_width="fill_parent" | |
android:layout_height="80px" | |
> | |
<ImageView | |
android:id="@+id/imageItem" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" |
OlderNewer