Hi.
I am making an App with LAMW on Linux.
I have three jEditText fields and a jListView and a jButton.
When I press the jButton, the contents of the three jEditText fields is added to the jListView.
To delete an item from the jListView, I used the OnLongClickItem method.
When this OnLongClickItem method is called, I use a jDialogYN to confirm if I want to delete the item.
When I press Yes, the following code is executed :
ListViewLijst.Delete(deleteindex);
ListViewLijst.UpdateLayout();
and the Item is deleted from the jListView, and the App goes to the background automatically.
How could I make the App not go to the background after I press 'Yes' ?
Thanks.