Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この特定の番号からSMSを受信し、暗号化して、後で受信トレイに送信する必要があります。このようにして、私のメッセージは、私の電話を扱う他の人による読み取りから保護されます。
このようなものを試してください
ContentValues values = new ContentValues(); values.put("address", "123456789"); values.put("body", "foo bar"); getContentResolver().insert(Uri.parse("content://sms/inbox"), values);
これがお役に立てば幸いです