【发布时间】:2018-04-23 16:29:41
【问题描述】:
我正在使用此代码发送短信:
此代码可以在许多教程中找到,但它在 Oreo 中不起作用,我已发送正确答案
public void sendSms(String phone) {
if(null != phone) {
final Intent i = new Intent(Intent.ACTION_VIEW);
i.setType("vnd.android-dir/mms-sms");//<-- maybe problem is here
i.putExtra("address", phone);
startActivity(Intent.createChooser(i, getString(R.string.sms)));
}
}
我已经在 Android 4 到 Android 6 中测试了此代码没有问题,但在 Android 8.1 中,google api 模拟器说没有应用程序可以执行此操作,但是这个模拟器已经安装了 SMS 应用程序
我也不知道这是否适用于使用 Oreo 8.1 的真实设备
【问题讨论】:
标签: android android-intent sms