这听起来可能很愚蠢,但很严重,我正在寻找一个错误,从我在互联网上阅读的内容中,我应该尝试阅读返回的内容(在我的情况下为“cursor.moveToFirst()”,对或错)但我不能找到在哪里看到这个。我的应用程序中当然没有消息,logcat 中也没有任何消息,那么它在哪里?
谢谢 !
问问题
48 次
1 回答
1
你可以试试
boolean result = cursor.moveToFirst();
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast.makeText(context, "debug:" + result , duration).show();
然后它会在您的设备上弹出。
或者你可以试试
boolean result = cursor.moveToFirst();
Log.d("TESTING", "debug:" +result);
然后过滤LogCat"TESTING"
于 2013-03-13T02:57:33.567 回答