Exemplo n.º 1
0
        public bool OnItemLongClick(AdapterView parent, View view, int position, long id)
        {//מחיקת המוצר ברגע שלוחצים לחיצה ארוכה
            var db = new SQLiteConnection(Helper.Path());

            //הורדת המחיר של המוצר מהמחיר הכולל
            h            = h - CartList[position].GetPrice();
            payment.Text = h.ToString();
            db.Delete(CartList[position]); //מחיקת המוצר מהטבלה
            CartList.RemoveAt(position);   //מחיקת המוצר מהרשימה
            listadapter.NotifyDataSetChanged();
            return(true);
        }