我试图创建一个检查日期的应用程序,引用太阳从预装数据库设置的时间,并在发生之前90分钟输出警报。不太具体(可能与您更相关),我试图编写一个应用程序,该应用程序附带一个预先填充的信息数据库,可以根据需要访问。在Android开发中有多个使用SQLite的教程,但他们都假设您在应用程序运行时创建数据库并尝试输入用户确定的数据;我发现的唯一一个教程是从2009年开始,从那时起就有一些更新使得无法使用(我认为;无论如何,它肯定不会在Android Studio中运行)。关于这一切的所有其他问题都被标记为重复,并引用回到一个非常古老的问题,回答 - 你猜对了 - 同样过时的教程。 This是我正在谈论的教程,如果它有帮助的话;不知道它会,但它可能会。
编辑:为何关闭它?我在我的问题中提到过,这个问题之前已经在技术上得到了回答,但这一切都链接到一个过时的,无关紧要的教程,根本没有帮助。之前可能已经提出过这个问题,但答案已经改变了。
答案 0 :(得分:1)
Use SQLiteAssetHelper
。您添加一个库,创建一个SQLiteAssetHelper
的子类(而不是正常的SQLiteOpenHelper
),并将您的数据库放在assets/
中。
因此,例如,在this sample app中,我在app/build.gradle
中添加了库:
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
我的DatabaseHelper
扩展了SQLiteAssetHelper
:
/***
Copyright (c) 2008-2012 CommonsWare, LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.
From _The Busy Coder's Guide to Android Development_
https://commonsware.com/Android
*/
package com.commonsware.android.dbasset;
import android.content.Context;
import com.readystatesoftware.sqliteasset.SQLiteAssetHelper;
class DatabaseHelper extends SQLiteAssetHelper {
static final String TITLE="title";
static final String VALUE="value";
static final String TABLE="constants";
private static final String DATABASE_NAME="constants.db";
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, 1);
}
}
我的数据库is in app/src/main/assets/databases/
。
其他所有内容就像在Android中正常使用SQLite一样。首次运行应用时,您的数据库将自动从资产中解压缩。