Back to project page SenqmAndroid.
The source code is released under:
GNU General Public License
If you think the Android project SenqmAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Alban GRUIN/*from w w w . j a v a 2s .c om*/ * * This file is part of SenqmAndroid. * * SenqmAndroid is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * SenqmAndroid is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with SenqmAndroid. If not, see <http://www.gnu.org/licenses/>. */ package com.agrn.senqm.telephony.sms; import android.content.ContentValues; import android.content.Context; import android.net.Uri; import android.telephony.SmsManager; import java.util.ArrayList; public class SendSMS { public static void sendSMS(Context context, String address, String message) { SmsManager smsManager = SmsManager.getDefault(); if(message.length() > 160) { ArrayList<String> messagePartList = smsManager.divideMessage(message); smsManager.sendMultipartTextMessage(address, null, messagePartList, null, null); } else smsManager.sendTextMessage(address, null, message, null, null); addSMSToOutbox(context, address, message); } private static void addSMSToOutbox(Context context, String address, String message) { ContentValues values = new ContentValues(); values.put("address", address); values.put("body", message); context.getContentResolver().insert(Uri.parse("content://sms/sent"), values); } }