protected override void OnCreate(Bundle bundle)
 {
     base.OnCreate(bundle);
       SetContentView(Resource.Layout.ImageLoader);
       // Create your application here
       friends = Util.GenerateFriends();
       imageLoader = new ImageLoader(this, 64, 40);
       ListAdapter = new ImageLoaderAdapter(this, imageLoader, friends);
 }
예제 #2
0
 protected override void OnCreate(Bundle bundle)
 {
     base.OnCreate(bundle);
     SetContentView(Resource.Layout.ImageLoader);
     // Create your application here
     friends     = Util.GenerateFriends();
     imageLoader = new ImageLoader(this, 64, 40);
     ListAdapter = new ImageLoaderAdapter(this, imageLoader, friends);
 }