yes sir i read and check.Destination number type is string and i try to put there array values. Sir please help me
MsmVc
Posts
-
Send sms multiple recipients -
Send sms multiple recipientsThanks for reply but result is same,one first number got sms. Really i stuck here,now i need some extra ordinary tips or example to solve that problem. Please help me
-
Android Hiddenwhy?
-
Send sms multiple recipientsyes sir i try to send like this
sms.sendTextMessage("609,606,", null, message, null, null);
But result is only first number got SMS rest is skip. Please help me
-
Send sms multiple recipientsThanks for reply
SmsManager sms = SmsManager.getDefault();
I found article from http://mobiforge.com/developing/story/sms-messaging-android[^] I haven't ask question from author. If you know then please help me
-
Send sms multiple recipientsHi All I am trying to send SMS through program.I am able to send text SMS on Single recipient(only one number) at a time but i try to send SMS more than one number.Then i have found some article,i read that article and implement it.But it's not working for me.
ArrayList<String> myArr = new ArrayList<String>();
myArr.add("557"); myArr.add("12178");
StringBuilder sb = new StringBuilder();
for (String string : myArr) {
sb.append(string);
sb.append(";");
}
sm.sendTextMessage(sb.toString(), null, message, null, null);Please help me
-
Android HiddenOk thanks for information
-
Android HiddenHi all Can i run android .apk file in hidden mode?Please help me
-
Send Multiple smsplease help me somebody...
-
Send Multiple smsThanks for valuable response Can you give me some example code? Please help me
-
Send Multiple smsthanks for reply It doesn't matter for where i create SmsManager and TelephonyManager.I wont only one thing send sms 100% successfully from my side. If you have any idea then please give me tips or example Thanks in advance
-
Send Multiple smsThanks for reply No i am not getting any error. But when i send message on more than one number,then some time code fail.I mean message not send successfully. So my question is that if my code is good then 1) Why not send successfully 100% 2) Or Any other option to send multiple sms
-
Send Multiple smsHi Experts How can i send multiple(different number) SMS through code? Code is here..
public class sms extends Activity {
private static final String View = null;
/** Called when the activity is first created. */
boolean b;public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);try {
sendSMS(Numbert, Message); Toast.makeText(sms.this, "SMS Sent", Toast.LENGTH\_LONG).show(); } catch (Exception e) { //Toast.makeText(sms.this, e.getMessage(),Toast.LENGTH\_LONG).show(); }
}
public void sendSMS(String number, String msg) throws Exception {
{
for(int i=0;i<10;i++)
{
SmsManager sms = SmsManager.getDefault();
TelephonyManager telemngr = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);sms.sendTextMessage("01234555", null, "Test Message", null, null);
}
} -
Dos commandThanks for solution Problem solved
-
Dos commandThanks problem solved
-
Dos commandHi All I try to run dos command through mfc vc++.I know run dos command through .bat file.But my question is Can i run dos command directly from code? Please help me
-
Android StartThanks it's working
-
Android StartThank for reply I try to use adb shell am start i got some information. i have question about this what i check sir.
/.
Here manifest xml please help me
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.innovantesindia.broadcast_onBoot"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SendSMS_OnBoot"
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>
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
</manifest> -
Android StartHello members Good morning I have a write simple .apk file for android in my eclipse editor.When i send .apk file in android phone through my eclipse then application launch it self but when i send .apk through command adb install test.apk that time application not launch it self. My question is how to auto start .apk file when i successfully install in phone? Please help me..
-
Android DataThanks for reply