привет, я все еще новичок в xamarin android :( я делаю просмотр списка одним нажатием кнопки, что, когда я нажимаю кнопку, я буду считать щелчок и показывать в button.text, но я не могу справиться и с щелчком мыши
вот мойGetView код адаптера:
public override View GetView(int position, View convertView, ViewGroup parent)
{
var item = items[position];
View view = convertView;
if (view == null) // no view to re-use, create new
view = context.LayoutInflater.Inflate(Resource.Layout.list_ticket_view, null);
view.FindViewById<TextView>(Resource.Id.maintxt).Text = item.maintitle;
view.FindViewById<TextView>(Resource.Id.txtthwab).Text = item.thwab;
var button1 = view.FindViewById<Button>(Resource.Id.button1);
button1.Text = (item.counter).ToString();
}
я делаю button1, беру стартовое значение из item.counter и начинаю считать, т.е. item.counter = 10 из класса, когда клик будет 11,12,13, ... и т. д. наилучшим образом