无法从sqlite获取值并设置为TextView

时间:2013-11-15 06:55:04

标签: android sqlite

我想知道我的代码有什么问题,为什么我不能在colums#5 setText中将sqlite的值设置为TextView?

//Adapter SQLite
public Cursor getFRUIT_LEVEL_EASY_STEP_2()
{
    Cursor step_2 = sqLiteDatabase.rawQuery("SELECT count(*) FROM FRUIT WHERE " + KEY_LEVEL + "='Easy' AND " + KEY_LEVEL_STEP + "=1", null); 
    return step_2;
}

final TextView l1 = (TextView) findViewById(R.id.l1);
mySQLiteAdapter = new SQLiteAdapter(this);
mySQLiteAdapter.openToRead();

step_2 = mySQLiteAdapter.getFRUIT_LEVEL_EASY_STEP_2();
step_2.moveToFirst();

int count2 = step_2.getInt(0);

// Here i want to get value Int from clumns #5
int score =step_2.getInt(5);

if(count2 != 0)
    {
        l1.setText(Integer.toString(score));

    }

 step_2.close();
 mySQLiteAdapter.close();

为什么我无法获得价值?这段代码有什么问题?

2 个答案:

答案 0 :(得分:1)

使用以下代码

l1.setText(String.valueOf(score));

答案 1 :(得分:0)

而不是l1.setText(Integer.toString(score));

使用l1.setText(“”+ Integer.toString(score));

这可以帮到你