Я получил информацию о том, как получить текст и изображение для mms, посланных по этой ссылке: How to Read MMS Data in Android?.Как получить дату mms из содержимого: // mms.
Но я не уверен, как получить дату отправки mms.
Я знаю, что мне нужно изучить содержание: // mms и не в содержании: // mms/part.
Это Mothod для извлечения текста MMS:
private String getMmsText(String id) {
Uri partURI = Uri.parse("content://mms/part/" + id);
InputStream is = null;
StringBuilder sb = new StringBuilder();
try {
is = getContentResolver().openInputStream(partURI);
if (is != null) {
InputStreamReader isr = new InputStreamReader(is, "UTF-8");
BufferedReader reader = new BufferedReader(isr);
String temp = reader.readLine();
while (temp != null) {
sb.append(temp);
temp = reader.readLine();
}
}
} catch (IOException e) {
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
}
return sb.toString();
}
, а затем, в OnCreate метод, я использую этот код, чтобы получить информацию:
Cursor cursor = getContentResolver().query(uri, null, selectionPart,
null, null);
if (cursor.moveToFirst()) {
do {
String partId = cursor.getString(cursor.getColumnIndex("_id"));
String type = cursor.getString(cursor.getColumnIndex("ct"));
if ("text/plain".equals(type)) {
String data = cursor.getString(cursor
.getColumnIndex("_data"));
if (data != null) {
// implementation of this method above
body = getMmsText(partId);
} else {
body = cursor.getString(cursor.getColumnIndex("text"));
}
}
} while (cursor.moveToNext());
}
try {
main.setText(body);
img.setImageBitmap(bitmap);
} catch (Exception e) {
e.printStackTrace();
}
Я просто хочу знать где я могу внести изменения, чтобы получить значение даты.
Некоторая информация будет действительно полезна.
Благодарим за информацию. Это было действительно полезно .. :). Код работает, но год показывается как 1970 по какой-то причине. – mike20132013
Ах. См. Мое редактирование :) Просто измените на: long timestamp = (cursor.getLong (2) * 1000); - Должен разбираться :) – LokiSinclair
perfect..its working .. :) – mike20132013