0
String sel="SELECT "+stdb.sid+"," +stdb.amt+", "+stdb.details+" FROM "+stdb.tname;
        Cursor c=dobj.rawQuery(sel, null);
        while(c.moveToNext()){
            int id=c.getInt(c.getColumnIndex(stdb.sid));
            int amt=c.getInt(c.getColumnIndex(stdb.amt));
            String printdetail=c.getString(c.getColumnIndex(stdb.details));
            TextView tv1=(TextView)findViewById(R.id.textView1);

        Log.e("gg",""+amt ); //the value of amt comes in logcat
        tv1.setText(""+amt);//this gives nullpointer exception

在这里,我试图从edittext中获取一个值,我可以在logcat中看到该值,但是当我尝试使用settext(TextView)打印相同的值时,我得到一个NULLPOINTEREXCEPTION

4

1 回答 1

1

尝试这个

if(tv1!=NULL)
    tv1.setText(""+amt);
else
    Log.e("WHOA, this is NULL!!!");

并查看它是否打印 else 日志。如果是这样,则意味着您的 tv1 视图未正确初始化。如果没有,将看看我们能做些什么。

于 2012-08-07T20:30:12.803 回答