怎么看回来了? (真假 )

时间:2013-03-13 02:54:00

标签: android debugging cursor

这可能听起来很愚蠢,但是认真的,我正在寻找一个错误,从我在网上看到的我应该尝试阅读已经返回的内容(在我的情况下“cursor.moveToFirst()”,是真还是假)但我找不到哪里看到这个。我的应用程序当然没有消息,logcat中没有任何消息,所以它在哪里? 谢谢 !

1 个答案:

答案 0 :(得分: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);

然后使用"TESTING"

过滤LogCat