私はこのコードを使用しました:
String[] columnDate = new String[] {"date"};
Cursor cursor1 = getContentResolver().query(Uri.parse("content://sms/inbox"),
columnDate ,null, null, "date desc limit 1");
cursor1.moveToPosition(0);
String msgData1Date = cursor1.getString(0);
..そしてそれは機能しますが、この形式「1352933381889」で日付を返し
ます文字列型の通常の日付/時刻形式に変換するにはどうすればよいですか?