Questions tagged [smsmanager]

Manages SMS operations in Android apps. Functionality includes sending data, text, and pdu SMS messages. Get this object by calling the static method SmsManager.getDefault()

Manages SMS operations such as sending data, text, and pdu SMS messages. Get this object by calling the static method SmsManager.getDefault().

This class was deprecated in API level 4. Replaced by android.telephony.SmsManager that supports both GSM and CDMA.

Visit Android Developer for latest information

516 questions
-2
votes
2 answers

Can't send SMS if more than 160 character

I made sms application, it's running well if the message length < 160, but, when message length is more than 160, the emulator said that the application force close, How I fix that? here is my code.. private void kirimSMS(String string1, String…
-3
votes
1 answer

how to develop function read sms then restore in future by windows phone 8.1?

My task is write a application that read sms, save to file then restore in future. But i can't find any document related to restore sms. Can we restore sms with window phones.
-3
votes
1 answer

Whenever I receive an incoming call, my app should cut the incoming call and sends a custom sms to the incoming number

I want to create an app that should do the following whenever I receive an incoming call, my app should cut the incoming call and sends a custom SMS to the incoming number. How can I do this? In this app I wanted to have one UI in which I can toggle…
-3
votes
1 answer

How to Send sms periodically after a fixed time automatically

I need to send an SMS to a number periodically in background after a fixed time. How can tat be done. Thanks.
ASP
  • 3,645
  • 1
  • 31
  • 45
-4
votes
1 answer

How to send messages using Wifi

I want to develop a messenger like whatsapp. Attached code is working for sms can i use it by modifying it to send text over the internet SmsManager smsManager = SmsManager.getDefault(); smsManager.sendTextMessage(number, null, message, null,…
-6
votes
1 answer

Android send sms in Dual SIM Phone

I am working with app which includes sending of sms directly using SIM 1 or SIM 2. It does not matter which SIM is set by default Please help. Thanks For example, If SIM 1 is set by default and i need to send sms from sim 2 how can it be done. I…
Priyanka Singhal
  • 243
  • 1
  • 4
  • 20
1 2 3
34
35