2013年7月21日

android.telephony.SmsManager.sendMultipartTextMessage

摘要: smsManager.sendMultipartTextMessage(destAddress, null, divideContents, sentIntents, null); next step -- android.telephony.SmsManager public void sendMultipartTextMessage( String destinat... 阅读全文

posted @ 2013-07-21 23:46 勤修 阅读(2853) 评论(0) 推荐(0) 编辑

android发送与接收超长短信

摘要: android发送与接收超长短信 android接收发送短信,支持的最大字符数是70个,实际是67个字符,如果发送的短信超过了该数目,那就需要用到sendMultipartTextMessage()方法 public void sendMultipartTextMessage ( String destinationAddress, String scAd... 阅读全文

posted @ 2013-07-21 11:45 勤修 阅读(7352) 评论(0) 推荐(0) 编辑

PendingIntent传递数据注意参数RequestCode和Flag

摘要: 数据发送方: public static void notify(Context context, TxrjMessage msg) { NotificationManager notifiMgr = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE)... 阅读全文

posted @ 2013-07-21 03:22 勤修 阅读(11888) 评论(3) 推荐(0) 编辑

Activity四种启动模式之singleTask应用

摘要: Activity启动模式设置: Activity的四种启动模式: 1. standard 模式启动模式,每次激活Activity时都会创建Activity,并放入任务栈中。 2. singleTop 如果在任务的栈顶正好存在该Activity的实例, 就重用该实例,否者就会创建新的实例并放入栈顶(即使栈中已经... 阅读全文

posted @ 2013-07-21 02:30 勤修 阅读(19558) 评论(1) 推荐(2) 编辑

导航