Exemplo n.º 1
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.list_13);

            mStatus      = FindViewById <TextView> (Resource.Id.status);
            mStatus.Text = "Idle";

            // Use an existing ListAdapter that will map an array
            // of strings to TextViews
            ListAdapter = new SlowAdapter(this);

            ListView.ScrollStateChanged += OnScrollStateChanged;
        }
Exemplo n.º 2
0
		protected override void OnCreate (Bundle bundle)
		{
			base.OnCreate (bundle);
			SetContentView (Resource.Layout.list_13);

			mStatus = FindViewById <TextView> (Resource.Id.status);
			mStatus.Text = "Idle";

			// Use an existing ListAdapter that will map an array
			// of strings to TextViews
			ListAdapter = new SlowAdapter (this);

			ListView.ScrollStateChanged += OnScrollStateChanged;
		}