Cursor cursor = managedQuery(Phone.CONTENT_URI,new String[] { Phone.DISPLAY_NAME, Phone.NUMBER }, Phone.NUMBER + "= ?", new String[]{address},Phone.DISPLAY_NAME+" ASC");
cursor.moveToFirst();
String name=cursor.getString(cursor.getColumnIndex(Phone.DISPLAY_NAME));
代码'cursor.getColumnIndex(Phone.DISPLAY)'的行在手机上给我一个错误,但在模拟器上没有。你能告诉我这可能发生这种情况吗?事实上,我在3个不同的地方使用过这条线。它在2个地方工作,而不是在1个地方
答案 0 :(得分:0)