How to delete entry and video file in a listview file browser?

前端 未结 4 1244
感动是毒
感动是毒 2020-12-04 01:35

Problem description: I wanted a \"delete\" function which could perform delete/remove of the selected entry in a listview and at the same time delete the residing video file

4条回答
  •  时光取名叫无心
    2020-12-04 02:04

    You defined an override onListItemClick but this code is never been called. You should also register the a listener to the view you're using. Check how android handle user interface events.

    newListView.setOnItemClickListener(this);
    

提交回复
热议问题