- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
早上好,感谢并抱歉我的英语!
我正在开发一个 Android 应用程序,我希望该应用程序使用 SmsManager 发送大量短信。这很好,但是当我尝试在每条短信的发送之间实现任何类型时,问题就出现了。我也尝试在 for、asynctask 中使用线程,但应用程序也进入休眠状态,并且我需要应用程序在发送短信时不会阻塞。
我读取外部(应用程序目录内)文件的编号,然后将这些数据放入哈希表中,然后执行 for 循环来调用 SmsManager 函数 sendTextMessage。
MainActivity.java
package com.example.howtosendsmsinandroid;
import android.Manifest;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.os.AsyncTask;
import android.telephony.SmsManager;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity{
Button btn;
//EditText et1,et2;
private static final int Request_Read_Contacts=0;
private static final int Request_Code_permission=2;
BroadcastReceiver smsSentReceiver, smsDeliveredReceiver;
public void onResume() {
super.onResume();
smsSentReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
switch (getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS has been sent", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic Failure", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No Service", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio Off", Toast.LENGTH_SHORT).show();
break;
default:
break;
}
}
};
smsDeliveredReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
switch(getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS Delivered", Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(getBaseContext(), "SMS not delivered", Toast.LENGTH_SHORT).show();
break;
}
}
};
registerReceiver(smsSentReceiver, new IntentFilter("SMS_SENT"));
registerReceiver(smsDeliveredReceiver, new IntentFilter("SMS_DELIVERED"));
}
public void onPause() {
super.onPause();
unregisterReceiver(smsSentReceiver);
unregisterReceiver(smsDeliveredReceiver);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//et1=(EditText)findViewById(R.id.number);
//et2=(EditText)findViewById(R.id.Content);
String cPermission= Manifest.permission.SEND_SMS;
try{
if (ActivityCompat.checkSelfPermission(this,cPermission)!= PackageManager.PERMISSION_GRANTED){
ActivityCompat.requestPermissions(this,new String[]{cPermission},Request_Code_permission);
}
}
catch(Exception e){
e.printStackTrace();
}
String sPermission= Manifest.permission.INTERNET;
try{
if (ActivityCompat.checkSelfPermission(this,sPermission)!= PackageManager.PERMISSION_GRANTED){
ActivityCompat.requestPermissions(this,new String[]{cPermission},Request_Code_permission);
}
}
catch(Exception e){
e.printStackTrace();
}
}
public void onmessage(View v){
//String phonenumber = et1.getText().toString();
//String msg = et2.getText().toString();
try
{
Hashtable<Integer, ArrayList<String>> contacts = new Hashtable<Integer, ArrayList<String>>();
String linea;
InputStream fraw =
getResources().openRawResource(R.raw.numbers);
BufferedReader brin =
new BufferedReader(new InputStreamReader(fraw));
int count = 0;
while ((linea = brin.readLine()) != null){
//NO ENVIA SI SON 160 O MAS CARACTERES (DE FORMA ORDINARIA)
String[] parts = linea.split(";");
contacts.get(count);
ArrayList<String> numbers = new ArrayList<String>();
numbers.add(parts[0]);
numbers.add(parts[1]);
numbers.add(parts[2]);
contacts.put(count, numbers);
count++;
}
int i = 0;
for (Map.Entry<Integer, ArrayList<String>> entry: contacts.entrySet()){
SmsManager sms = SmsManager.getDefault();
String number = entry.getValue().get(0);
String nom = entry.getValue().get(1);
String animal = entry.getValue().get(2);
String msg = "Hola {{NOMBRE}}, le informamos que su {{ANIMAL}} se ha comido a su vecina. Contacte con nosotros a traves de www.porncharacters.com";
msg = msg.replace("{{NOMBRE}}", nom);
msg = msg.replace("{{ANIMAL}}", animal);
PendingIntent piSent=PendingIntent.getBroadcast(this, 0, new Intent("SMS_SENT"), 0);
PendingIntent piDelivered=PendingIntent.getBroadcast(this, 0, new Intent("SMS_DELIVERED"), 0);
/*
Toast.makeText(getApplicationContext(), "Numero:" + number,
Toast.LENGTH_LONG).show();
Toast.makeText(getApplicationContext(), "Message: " + msg,
Toast.LENGTH_LONG).show();
Toast.makeText(getApplicationContext(), "Numero: " + number,
Toast.LENGTH_LONG).show();
Toast.makeText(getApplicationContext(), "Numero: " + nom,
Toast.LENGTH_LONG).show();
*/
sms.sendTextMessage(number, null, msg, piSent, piDelivered);
i++;
//Thread.sleep(60000);
}
fraw.close();
}
catch (Exception ex)
{
Log.e("Ficheros", "Error al leer fichero desde recurso raw");
}
}
}
最佳答案
最后,我成功解决了这个问题。我使用了 Handler 和 Thread 以及进度条。
我把代码放在这里,希望对你有帮助。
MainActivity.java
package com.example.howtosendsmsinandroid;
import android.Manifest;
import android.app.Activity;
import android.app.PendingIntent;
import android.app.ProgressDialog;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ProgressBar;
import android.widget.Toast;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import android.os.Handler;
import java.io.BufferedReader;
import java.util.ArrayList;
import java.util.Hashtable;
import java.io.InputStreamReader;
import java.io.InputStream;
import java.util.Map;
import android.content.BroadcastReceiver;
import android.content.Context;
public class MainActivity extends Activity {
/*
EditText txtPhoneNo;
EditText txttime;
*/
//AsyncTask<?, ?, ?> runningTask;
EditText txtMessage;
Button btnSend;
Button btnLoad;
String p = Manifest.permission.SEND_SMS;
ProgressDialog barraProgreso;
private Hashtable<Integer, ArrayList<String>> contacts = new Hashtable<Integer, ArrayList<String>>();
int i = 0;
private Handler handler;
BroadcastReceiver smsSentReceiver, smsDeliveredReceiver;
public void onResume() {
super.onResume();
smsSentReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
switch (getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS has been sent", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic Failure", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No Service", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio Off", Toast.LENGTH_SHORT).show();
break;
default:
break;
}
}
};
smsDeliveredReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
switch(getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS Delivered", Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(getBaseContext(), "SMS not delivered", Toast.LENGTH_SHORT).show();
break;
}
}
};
registerReceiver(smsSentReceiver, new IntentFilter("SMS_SENT"));
registerReceiver(smsDeliveredReceiver, new IntentFilter("SMS_DELIVERED"));
}
public void onPause() {
super.onPause();
unregisterReceiver(smsSentReceiver);
unregisterReceiver(smsDeliveredReceiver);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//txtPhoneNo = (EditText) this.findViewById(R.id.nrotelf);
//txtMessage = (EditText) this.findViewById(R.id.editText2);
//txttime = (EditText) this.findViewById(R.id.editText);
txtMessage = this.findViewById(R.id.txtMessage);
btnSend = this.findViewById(R.id.btn);
btnLoad = this.findViewById(R.id.btnLoad);
btnLoad.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
try {
String linea;
InputStream fraw =
getResources().openRawResource(R.raw.numbers);
BufferedReader brin =
new BufferedReader(new InputStreamReader(fraw));
int count = 0;
while ((linea = brin.readLine()) != null) {
//NO ENVIA SI SON 160 O MAS CARACTERES (DE FORMA ORDINARIA)
String[] parts = linea.split(";");
contacts.get(count);
ArrayList<String> numbers = new ArrayList<String>();
numbers.add(parts[0]);
//numbers.add(parts[1]);
//numbers.add(parts[2]);
contacts.put(count, numbers);
count++;
}
Toast.makeText(getBaseContext(), "Numeros importados: " + contacts.size(), Toast.LENGTH_LONG).show();
}catch (Exception ex)
{
Log.e("Ficheros", "Error al leer fichero desde recurso raw");
}
}
});
btnSend.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
// Obtener numero de telefono y mensaje
checkSMSStatePermission();
try {
barraProgreso = new ProgressDialog(MainActivity.this);
barraProgreso.setTitle("Buscando...");
barraProgreso.setMessage("Progreso...");
barraProgreso.setProgressStyle(barraProgreso.STYLE_HORIZONTAL);
barraProgreso.setProgress(0);
barraProgreso.setMax(contacts.size());
barraProgreso.show();
handler = new Handler();
new Thread(new Runnable() {
@Override
public void run() {
try {
while (barraProgreso.getProgress() <= barraProgreso.getMax()) {
Thread.sleep(10000);
handler.post(new Runnable() {
@Override
public void run() {
sendMessage();
barraProgreso.incrementProgressBy(1);
i++;
}
});
if(barraProgreso.getProgress() == barraProgreso.getMax()){
barraProgreso.dismiss();
}
}
}catch (InterruptedException er){
er.printStackTrace();
}
}
}).start();
// If phone number & message is not empty
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
// Function send message sms
private void sendMessage() {
SmsManager smsManager = SmsManager.getDefault();
PendingIntent sentPI;
String SENT = "SMS_SENT";
//String message = "Mensaje de prueba: " + i;
//String message = "Hola "+ contacts.get(i).get(1)+" , le informamos que su "+ contacts.get(i).get(2)+" se ha comido a su vecina. Contacte con nosotros a traves de www.porncharacters.com";
String message = txtMessage.getText().toString();
//el primer parametro recibe el contexto asi que lo
// llamas desde un fragment tendras
//cambiar el this por getContext()
sentPI = PendingIntent.getBroadcast(getBaseContext(), 0, new Intent(SENT), 0);
smsManager.sendTextMessage(contacts.get(i).get(0), null, message, sentPI, null);
//Toast.makeText(getBaseContext(), message.length(), Toast.LENGTH_LONG).show();
}
private void checkSMSStatePermission() {
int permissionCheck = ContextCompat.checkSelfPermission(
this, Manifest.permission.SEND_SMS);
if (permissionCheck != PackageManager.PERMISSION_GRANTED) {
Log.i("Mensaje", "No se tiene permiso para enviar SMS.");
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.SEND_SMS}, 225);
} else {
Log.i("Mensaje", "Se tiene permiso para enviar SMS!");
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
return true;
}
}
关于java - SmsManager 在发送每条短信之间有延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58481777/
早上好,感谢并抱歉我的英语! 我正在开发一个 Android 应用程序,我希望该应用程序使用 SmsManager 发送大量短信。这很好,但是当我尝试在每条短信的发送之间实现任何类型时,问题就出现了。
我正在开发一个自动回复 Android 应用程序,如果传入的号码与所选号码(即保存在数据库中)匹配,它将向传入号码发送消息。它运行成功,但有时会发送两次消息,它会向该传入号码发送三条消息。 我正在使用
我正在使用以下代码发送短信。但这似乎不会在未发送短信时产生异常。例如,当没有足够的钱发送时,我仍然会去 smsSucces();有没有人知道解决此问题的方法以确保它已发送? private b
我正在尝试使用 smsManager 从 BroadCast Receiver 发送文本消息。我收到此错误消息 NullPointerException。我不知道这有什么问题。我厌倦了这个错误。这是我
我正在尝试发送多条 SMS 消息。我的代码: for (Entry entry : book.entrySet()) { sendSMS(entry.getValue(), message);
我正在开发一些发送短信的应用程序。我的问题是,当我尝试发送长文本时,它不会发送消息。我知道有字符数限制。 我正在使用 SmsManager: SmsManager SMS = SmsManager.g
例如,当消息中有重音时,我的 Android 短信应用程序会出现一些奇怪的行为; smsTEXT = “如果您愿意,请尽快调用办公室。” 消息在单个 160 个字符的短信长度内,但是当我调用它时; A
我在尝试发送多部分 SMS 消息时收到来自三星设备的崩溃日志,这是导致崩溃的行: SmsManager.getDefault().sendMultipartTextMessage(phone, nul
当我使用 SmsManager 发送 SMS 时,广播的结果 Intent 的值为 5 Activity.RESULT_OK SmsManager.RESULT_ERROR_GENERIC_FAILU
我已经把这个文件包含在android 2.3.3的项目中 import android.telephony.gsm.SmsManager; 显示代码如下(删除smsmanager文本) import
我正在尝试使用 android.telephony.SMSManager 发送短信。当我向全国各地的人发送短信时,它有效。例如,当我尝试向加利福尼亚发送 SMS 时,它不再起作用。 此外,当我尝试向加
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我对我正在创建的短信应用程序有疑问(学习目的)。 发送短信时,我希望在发送(或未发送)后显示一条 toast 消息 问题是,一旦我点击发送,我想关闭 Activity ,但仍然会出现 toast 消息
我想了解 import android.telephony.SmsManager; 如何知道短信已成功发送。 我正在使用学习指南中的这段代码 protected void sendSMSMessag
我正在使用 VS 2015,并从我的 nexus 4 设备进行调试。为什么此行抛出异常(与任何电话号码相同的结果 - 包括实数)? (未显示详细信息)。 SmsManager.Default.Send
我正在尝试制作一个可以发送彩信的应用程序,无需使用 native Android 消息传递应用程序。我按照示例 here .我的日志语句似乎可以正确打印,但我不明白为什么没有发送彩信。 另外,我对示例
我正在构建一个应用程序来发送短信和接收送达报告。我在表单上有一个按钮,其 onclick 属性为 m1,当我单击该按钮时,应用程序崩溃了。我做错了什么? 这是代码: public class m1g
我正在尝试在 Android 2.2 中创建一个应用程序,该应用程序使用 android.telephony.SmsManager 在后台自动向 6 个不同的联系人发送相同的消息作为 Service同
package com.soft.mash.contactmanager; import android.app.Activity; import android.os.Bundle; import
我尝试在 android 中使用 SmsManager 发送 Text Message。消息传递正常。当我尝试用不同的语言发送消息时,它以 ??????? 形式发送。我不知道有什么问题。 try {
我是一名优秀的程序员,十分优秀!