包'com.example.myapp'已存在于此项目中的Eclipse文件夹'gen'中

时间:2016-07-08 08:05:54

标签: android

我试图通过右键单击项目文件夹>来重构我的Android项目包。 Android工具 > 重命名应用程序包 。但它只重构了private boolean isRecordExistInDatabase(String tableName, String field, String value) { String query = "SELECT * FROM " + tableName + " WHERE " + field + " = '" + value + "'"; Cursor c = db.rawQuery(query, null); if (c.moveToFirst()) { //Record exist c.close(); return true; } //Record available c.close(); return false; } public long createPlayer1(...){ // check if record exist in database by title number if(isRecordExistInDatabase(SQLITE_TABLE, KEY_NUMBER, number)){ return 0; } // create record and insert to database normally ContentValues initialValues = new ContentValues(); ... return mDb.insert(SQLITE_TABLE, null, initialValues); } 文件夹中的包。

现在我正在尝试使用gen快捷方式重构src文件夹中的包,它会给我以下问题:

enter image description here

为什么会出现这个问题以及我该怎么办?

0 个答案:

没有答案