gpt4 book ai didi

android - 从 databasehelper 访问字符串资源

转载 作者:行者123 更新时间:2023-11-29 15:50:54 26 4
gpt4 key购买 nike

我需要将一些默认数据存入数据库。我在我的数据库助手中制作了方法:

private void putDefaultList(SQLiteDatabase db){
String nazwaa = null;
String mark = "0";

ArrayList<String> nazwa = new ArrayList<>();
nazwa.add("jjjjjj");
nazwa.add("kokoko");

for (int i =0; i<nazwa.size(); i++) {

nazwaa = nazwa.get(i);
db.execSQL("INSERT INTO " + TodoTable.TABLE_NAME + " (" + TodoTable.COL_2 + ", " + TodoTable.COL_3 + ") VALUES (" + "'" + nazwaa + "'" + ", " + "'" + mark + "'" + ")");
}

此方法有效,但我需要使用不同的语言,因此最简单的方法是访问 strings.xml,但我不知道在这种情况下该怎么做。

我试过了Resources.getSystem().getString(R.string.jjjjjj));但这会使我的应用程序崩溃。

最佳答案

public class DbHelper extends SQLiteOpenHelper {

private Context context;

public DbHelper(Context context, String name, int version) {
super(context, name, null, version);

// Application Context
this.context = context.getApplicationContext();
}

@Override
public void onCreate(SQLiteDatabase db) {

String res = this.context.getString(String_resId);
}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}

}

关于android - 从 databasehelper 访问字符串资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30056928/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com