这可能是一个愚蠢的问题,我有点像菜鸟。我正在读这篇文章:How do I access call log for android?
在代码底部的答案中,他们有这一行:
int type = Integer.parseInt(c.getString(c.getColumnIndex(CallLog.Calls.TYPE)));// for call type, Incoming or out going
我对调用类型的存储方式有点困惑,是字符串还是整数? 显示的代码行使我认为它保存为数字,但是以字符串格式保存。任何人都可以向我解释这个吗?
谢谢, 马特
答案 0 :(得分:9)
类型存储为整数。这就是我获取新未接来电列表的方式:
cursor = cr.query(Uri.parse("content://call_log/calls"), null, "type = 3 AND new = 1", null, "date DESC");
当然使用CallLog.Calls.MISSED_TYPE,INCOMING_TYPE和OUTGOING_TYPE常量会更好。
答案 1 :(得分:5)
这里CallLog.Calls.TYPE
为您提供数据库中的字段名称,用于获取调用类型的信息,其中包含保存调用类型的整数值,尽管它可能是文本字段。
1
错过类型2
传出类型3
您只需像android.provider.CallLog.Calls.MISSED_TYPE
一样使用它们,
仅android.provider.CallLog.Calls.INCOMING_TYPE
和android.provider.CallLog.Calls.OUTGOING_TYPE
。
答案 2 :(得分:3)
参考:http://developer.android.com/reference/android/provider/CallLog.Calls.html#INCOMING_TYPE
传入类型 1
2
3
答案 3 :(得分:3)
使用此方法
private static String getCallDetails(Context context) {
StringBuffer stringBuffer = new StringBuffer();
Cursor cursor = context.getContentResolver().query(CallLog.Calls.CONTENT_URI,
null, null, null, CallLog.Calls.DATE + " DESC");
int number = cursor.getColumnIndex(CallLog.Calls.NUMBER);
int type = cursor.getColumnIndex(CallLog.Calls.TYPE);
int date = cursor.getColumnIndex(CallLog.Calls.DATE);
int duration = cursor.getColumnIndex(CallLog.Calls.DURATION);
while (cursor.moveToNext()) {
String phNumber = cursor.getString(number);
String callType = cursor.getString(type);
String callDate = cursor.getString(date);
Date callDayTime = new Date(Long.valueOf(callDate));
String callDuration = cursor.getString(duration);
String dir = null;
int dircode = Integer.parseInt(callType);
switch (dircode) {
case CallLog.Calls.OUTGOING_TYPE:
dir = "OUTGOING";
break;
case CallLog.Calls.INCOMING_TYPE:
dir = "INCOMING";
break;
case CallLog.Calls.MISSED_TYPE:
dir = "MISSED";
break;
}
stringBuffer.append("\nPhone Number:--- " + phNumber + " \nCall Type:--- "
+ dir + " \nCall Date:--- " + callDayTime
+ " \nCall duration in sec :--- " + callDuration);
stringBuffer.append("\n----------------------------------");
}
cursor.close();
return stringBuffer.toString();
}
答案 4 :(得分:0)
这对我来说也很有用。
String where = CallLog.Calls.TYPE + "=" + "=1 "+" OR "+ CallLog.Calls.TYPE + "=" + "=3";