-1

在我的程序中,我如何第一次设置我的 SQLite 数据库?执行此操作的程序结构是什么?

我能想到的唯一方法是保持第一次布尔值:

if (isFirstInstall) setup();

这似乎很不专业。是否有进行此类设置的 onFirstInstall() 调用?

4

4 回答 4

2

您可以将布尔值存储到 SharedPreferences 中,并在应用程序启动时检查值(第一次与否)。

检查sharedPreferences的文档

希望这个线程可以帮助你

于 2012-05-30T05:17:19.250 回答
2

试试这个

private SharedPreferences mPreferences;

    boolean firstTime = mPreferences.getBoolean("firstTime", true);
    if (firstTime) { 
        SharedPreferences.Editor editor = mPreferences.edit();
        editor.putBoolean("firstTime", false);
        editor.commit();
        showMiddleActivity();
    }
于 2012-05-30T05:28:01.970 回答
0

您可以尝试使用此代码。

调用checkFirstLaunch(); 来自 onCreate()。

private boolean checkFirstLaunch() {
        try {
            PackageInfo info = getPackageManager().getPackageInfo(getPackageName(), 0);
            //int currentVersion = info.versionCode;
            SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
            int lastVersion = prefs.getInt(PreferencesActivity.KEY_HELP_VERSION_SHOWN, 0);
            if (lastVersion == 0) {
                isFirstLaunch = true;
            } else {
                isFirstLaunch = false;
            }

        } catch (PackageManager.NameNotFoundException e) {
            Log.w(TAG, e);
        }
        return false;
    }

你得到布尔结果。

if (isFirstLaunch) {
    //code    
}
于 2012-05-30T05:19:52.703 回答
0

而不是弄清楚它是否是第一次启动,您可以检查数据库是否存在,如果它丢失则创建它。

public void createDataBase() throws IOException {
    if ( checkIfDataBaseExist() ) {
        // db exists, do nothing
    } else {
        // By calling this method and empty database will be created into
        // the default system path of your application
        this.getReadableDatabase();
        try {
            // Do you db copying here
        } catch (IOException e) {
            throw new Error("Error copying database");
        }
    }
}

private boolean checkIfDataBaseExist() {
    File dbFile = new File(DB_PATH + DB_NAME);
    return dbFile.exists();
}
于 2012-05-30T06:25:20.960 回答