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.
我需要从这个特定号码接收短信,对其进行加密,然后在收件箱中发送。这样,我的信息就不会被处理我手机的任何人阅读。
尝试这样的事情
ContentValues values = new ContentValues(); values.put("address", "123456789"); values.put("body", "foo bar"); getContentResolver().insert(Uri.parse("content://sms/inbox"), values);
我希望这有帮助