为什么我不能在没有运行时错误的情况下使用 Resources.getSystem()?
2022-09-04 05:42:44
public class BobDatabase extends SQLiteOpenHelper{
private static final String DATABASE_NAME = "bob.db";
private static final int DATABASE_VERSION = 1;
public static final String DEFAULT_PROFILE = "default_profile";
public BobDatabase(Context context)
{
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase database)
{
createProfileTable(database);
createTimeTable(database);
createEventTable(database);
createLocationTable(database);
}
/**
* Creates a table for Profile objects, executes the string create_profile_table_sql
* contained within strings.xml
* @param database
*/
public void createProfileTable(SQLiteDatabase database)
{
database.execSQL(Resources.getSystem().getString(R.string.create_profile_table_sql));
}}
我收到此错误
01-14 12:20:57.591: E/AndroidRuntime(1825): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x7f040003
导致错误的代码是createProfileTable中的单行,特别是Resources.getSystem().getString(R.string.create_profile_table_sql)如果我使用类变量来保存上下文并执行 context.getString(R.string.create_profile_table_sql)我没有得到任何错误,但我不想这样做,因为我想避免内存泄漏,并且根据我知道这应该起作用。知道发生了什么吗?