我的问题是,我正在使用这样的代码在content://sms/inbox
中导入SMS,但它不起作用:
ContentValues my_values = new ContentValues();
my_values.put("address", "333333333333");
my_values.put("body", "this is my text");
getContentResolver().insert(Uri.parse("content://sms/inbox"), my_values);
此外,我尝试了在这个网站上找到的其他解决方案,但都没有帮助我。
感谢谁来解决这个问题。
首先,您的应用程序应该是默认的短信应用程序,然后您可以执行相同的