5
此方法在API級別19中已棄用 數據庫路徑由實現管理,調用此方法將不起作用。我使用setDatabasePath
來設置webview的數據庫路徑。android webview setDatabasePath不推薦使用
String databasePath = this.getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath();
settings.setDatabasePath(databasePath);
這是否意味着在API 19它不能找到我的數據庫?如何解決這個問題? (他們是什麼意思有:數據庫路徑由執行管理)