无法使用我编写的代码在android上发送短信

时间:2018-07-19 21:44:41

标签: java android sms

我正在尝试构建我的第一个应用程序,它将发送一个SMS消息。 一切看起来都不错: 1. SMS应用程序打开 2.插入URI 3.键入短信

仅不执行最后一次按下“发送”按钮的情况。

我正在使用演示的here on youtube代码:

其中包含此AndroidManifest.XML

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="il.ac.ruppin.reco.www.sendsmsyoutube">

    <uses-permission android:name="android.permission.SEND_SMS"/>
    <uses-permission android:name="android.permission.SENR_RESPONSE_VIA_MESSAGE"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

和此MainActivity.java

package il.ac.ruppin.reco.www.sendsmsyoutube;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Uri uri = Uri.parse("smsto:+972528524520");
        Intent intent = new Intent(Intent.ACTION_SENDTO,uri);
        intent.putExtra("sms_body","Message from my new application");
        startActivity(intent);
    }
}

感谢您的帮助

3 个答案:

答案 0 :(得分:0)

您只是错过了正确的uri格式是sms:而不是smsto:

Uri uri = Uri.parse("sms:+972528524520");
Intent intent = new Intent(Intent.ACTION_SENDTO,uri);
intent.putExtra("sms_body","Message from my new application");
startActivity(intent);

答案 1 :(得分:0)

您可以尝试使用SmsManager类

SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, sms, null, null)

在哪里, phoneNo =发送给,sms =您要传递的消息

答案 2 :(得分:0)

好,根据Hardik Vegad的回答,我使用了SmsManager。 我要做的就是允许应用程序发送短信。 设置>应用程序> MyAp>权限

感谢您的帮助