Questions tagged «mms»

6
在Android中发送和接收SMS和MMS(Kit Kat之前的Android 4.4)
我已经弄清楚了如何发送和接收短信。要发送SMS消息,我必须调用类的sendTextMessage()和sendMultipartTextMessage()方法SmsManager。要接收SMS消息,我必须在AndroidMainfest.xml文件中注册一个接收器。然后我不得不重写的onReceive()方法BroadcastReceiver。我在下面提供了示例。 MainActivity.java public class MainActivity extends Activity { private static String SENT = "SMS_SENT"; private static String DELIVERED = "SMS_DELIVERED"; private static int MAX_SMS_MESSAGE_LENGTH = 160; // ---sends an SMS message to another device--- public static void sendSMS(String phoneNumber, String message) { PendingIntent piSent = PendingIntent.getBroadcast(mContext, 0, new Intent(SENT), 0); …

5
如何在Android中读取MMS数据?
我想读取MMS数据,我已经mmssms.db在mms条目的存储位置看到了零件表。我正在使用光标,我想知道适当的方法URI;我使用“的内容://彩信,短信/通话”和列名“地址”(发送到),“文本”或“主题”和形象的“数据”列名的。 我已经看到了mmssms.dbPart Table的架构及其列。
74 android  mms 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.