Android プラットフォーム上に構築されたアプリから、受信トレイ内の既存の会話に定義済みのメッセージを挿入する方法はありますか?
このコードを使用すると、最後に送受信されたメッセージを取得できます。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
Uri uriSMS = Uri.parse("content://sms/");
Cursor cur = getContentResolver().query(uriSMS, null, null, null, null);
cur.moveToNext();
String body = cur.getString(cur.getColumnIndex("body"));
String add = cur.getString(cur.getColumnIndex("address"));
String time = cur.getString(cur.getColumnIndex("date"));
String protocol = cur.getString(cur.getColumnIndex("protocol"));
String contactName = "";
Uri personUri = Uri.withAppendedPath( ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(add));
Cursor c = getContentResolver().query(personUri, new String[] { PhoneLookup.DISPLAY_NAME }, null, null, null );
if( c.moveToFirst() ) {
int nameIndex = c.getColumnIndex(PhoneLookup.DISPLAY_NAME);
contactName = c.getString(nameIndex);
}
c.close();
cur.close();
String out = "";
Date d = new Date(Long.valueOf(time));
if (protocol == null)
out = "Sending to: "+ contactName + " <"+add +">\nDate: "+d +"\nBody: "+body+"\n\n";
else
out = "Received from: "+ contactName + " <"+add +">\nDate: "+d +"\nBody: "+body+"\n\n";
tv.setText(out);
setContentView(tv);
}
これをブロードキャスト レシーバ (SmsReceiver.java) に組み込む方法はありますか? 新しいメッセージを受信したときに、受信トレイ内の最新のテキスト メッセージに関連する会話に定義済みのメッセージを挿入できるように、イベントをトリガーできる方法があることを願っています。
私がそれをしている間。ユーザーに手動で入力するように求めることなく、ネイティブの電話番号を正確に取得する方法はありますか?