在我的应用程序中,我正在使用下载 DB sql lite,并且我已将此代码设置为返回终止下载的消息
protected String doInBackground(String... params) {
if(first) {
File dbPath = getDatabasePath(DatabaseHelper.DB_NAME);
if (dbPath.exists()) {
DBProvider provider = new DBProvider(MainActivity.this);
database_comune_dao commune_dao = new database_comune_dao(provider.getDb());
FirstProjectApplication.allComunes.clear();
FirstProjectApplication.allComunes = commune_dao.getAllComune();
}
return "SUCCESS";
}
我想用 Material Design 的新 Snackbar 更改返回消息,这是代码
Snackbar.with(getApplicationContext()) // context
.text("SUCCESS") // text to display
.show(this);
我试图改变这个代码的回报,但我有错误。知道如何为此设置此小吃吧吗?
谢谢