发送短信权限不起作用

时间:2015-11-11 09:50:41

标签: android permissions sms android-manifest send

我想发送一条简单的邮件,我的清单中有<uses-permission android:name="android.permission.SEND_SMS"/>,但我总是得到:java.lang.SecurityException: Sending SMS message: uid 10064 does not have android.permission.SEND_SMS.

我检查了this answer,但它仍然无效。

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.roa.sendsms" >


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

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

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

这是我的代码:

package com.roa.sendsms;

import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.telephony.SmsManager;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    Button sendButton =  (Button)findViewById(R.id.sendButton);
    sendButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            sendSms(phoneNumber, "you get message from roish app!!");
        }
    });
}

private void sendSms(String phoneNumber, String message){
    SmsManager sms = SmsManager.getDefault();
    sms.sendTextMessage(phoneNumber, null, message, null, null);
}

}

感谢所有人。

7 个答案:

答案 0 :(得分:2)

尝试使用这样的东西。未经测试,但应该可以正常工作。当你在这里看到一些问题时,请留言。

这只是为了说明Android M中的权限授予是如何工作的。请按照Android tutorial site about permissions中提到的功能进行扩展。

您需要添加ActivityCompat.shouldShowRequestPermissionRationale检查以匹配最佳做法。我可以扩展这个答案,但我认为没有必要。只需确保您在运行时授予权限(或使用低于23的targetSdkVersion - 但不建议这样做)

private static final int PERMISSION_SEND_SMS = 123;

private void requestSmsPermission() {

    // check permission is given
    if (ContextCompat.checkSelfPermission(thisActivity, Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
        // request permission (see result in onRequestPermissionsResult() method)
        ActivityCompat.requestPermissions(thisActivity,
            new String[]{Manifest.permission.SEND_SMS},
            PERMISSION_SEND_SMS);
    } else {
        // permission already granted run sms send
        sendSms(phone, message);
    }
}

@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
    switch (requestCode) {
        case MY_PERMISSIONS_REQUEST_READ_CONTACTS: {

            if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                // permission was granted
                sendSms(phone, message);
            } else {
                // permission denied
            }
            return;
        }
    }
}

private void sendSms(String phoneNumber, String message){
    SmsManager sms = SmsManager.getDefault();
    sms.sendTextMessage(phoneNumber, null, message, null, null);
}

答案 1 :(得分:0)

您需要做的就是,

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.roa.sendsms"
    android:versionCode="1"
    android:versionName="1.0">

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

        <activity
            android:name="com.example.homesafe.MainActivity"
            android:label="@string/app_name">

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

尝试进入移动设备而不是将其检入模拟器。仅仅因为模拟器没有我们的手机所拥有的SIM卡,所以。

答案 2 :(得分:0)

您可以尝试这种方式:

private void sendSms(String phoneNumber, String message) {
   Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse( "sms:" + phoneNumber ) ); 
   intent.putExtra( "sms_body", message ); 
   startActivity(intent);
}

答案 3 :(得分:0)

那应该有用

file_get_contents(https://127.0.0.1/js/nav_index.php?lang=zn&index=1)

答案 4 :(得分:0)

我遇到了同样的问题,您需要在设置> app>“您的应用”>启用短信权限

时获得运行时权限

答案 5 :(得分:0)

如果您的消息太长,则使用smsManager.sendTextMessage(..会失败,并自动失败。

您需要使用smsManager.sendMultipartTextMessage(...

SmsManager smsManager = SmsManager.getDefault();
ArrayList<String> messageList = smsManager.divideMessage(message.toString());
smsManager.sendMultipartTextMessage(phoneNumber, null, messageList, null, null);

答案 6 :(得分:-1)

我在华为Android 8中试过这个,除了在清单中添加READ_PHONE_STATE权限外,手机还需要允许“访问手机ID”到应用程序。然后它工作。