How to delete database in Android app

前端 未结 4 1310
北海茫月
北海茫月 2021-01-05 15:58

How can I delete the database from the application?

4条回答
  •  半阙折子戏
    2021-01-05 16:42

    Old post, but I think its worth adding this in case this feature wasn't available back then. I use Context. For example, when your in MainActivity

    this.deleteDatabase("mydata.db");
    

    or when you have a context handle elsewhere

    context.deleteDatabase("mydata.db");
    

提交回复
热议问题