Androidはカラーメッセージの送信方法(MMS)を実現し、非呼び出しシステムのカラーメッセージインタフェース
最近、システムインタフェースを呼び出さずにカラーメッセージを送信する必要がある.メールを送る機能をしたことがある人は、StartActivityを使わずにメールを送るように、メールを送るような方法を呼び出すことができるかもしれません.SmsManager smsManager=SmsManagement.getDefault(); smsManager.sendTextMessage(phoneCode, null, text, null, null); 叶えられるかな?答えは否定的です.androidにはカラーメッセージを送信するインタフェースがありません.カラーメッセージを送信したい場合は、申し訳ありません.システムカラーメッセージappインタフェースを呼び出してください.以下のようにします.
view plain copy to clipboard print ?
Intent sendIntent = new Intent(Intent.ACTION_SEND, Uri.parse("mms://")); sendIntent.setType("image/jpeg");
String url = "file://sdcard//tmpPhoto.jpg"; sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
startActivity(Intent.createChooser(sendIntent, "MMS:"));
Intent sendIntent = new Intent(Intent.ACTION_SEND, Uri.parse("mms://")); sendIntent.setType("image/jpeg"); String url = "file://sdcard//tmpPhoto.jpg"; sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url)); startActivity(Intent.createChooser(sendIntent, "MMS:"));
第一歩:まず、androidソースのMMSアプリケーションからmmsを使用するpduを構築するために送信するカラーメッセージの内容を構築します.pduパッケージからcopyが出てきました.pduパッケージのすべてのクラスを
view plain copy to clipboard print ?
Intent sendIntent = new Intent(Intent.ACTION_SEND, Uri.parse("mms://"));
String url = "file://sdcard//tmpPhoto.jpg";
startActivity(Intent.createChooser(sendIntent, "MMS:"));
Intent sendIntent = new Intent(Intent.ACTION_SEND, Uri.parse("mms://")); sendIntent.setType("image/jpeg"); String url = "file://sdcard//tmpPhoto.jpg"; sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url)); startActivity(Intent.createChooser(sendIntent, "MMS:"));
, , ? , 。
第一歩:まず、androidソースのMMSアプリケーションからmmsを使用するpduを構築するために送信するカラーメッセージの内容を構築します.pduパッケージからcopyが出てきました.pduパッケージのすべてのクラスを
, 。
- final SendReq sendRequest = new SendReq ();
- final PduBody pduBody = new PduBody();
- final PduPart part = new PduPart();// , part, , body add part。
- pduBody.addPart(partPdu);
- sendRequest.setBody(pduBody);
- final PduComposer composer = new PduComposer(ctx, sendRequest);
- final byte[] bytesToSend = composer.make(); // byte , http "http://mmsc.monternet.com";
final SendReq sendRequest = new SendReq ();
final PduBody pduBody = new PduBody();
final PduPart part = new PduPart();// , part, , body add part。
pduBody.addPart(partPdu);
sendRequest.setBody(pduBody);
final PduComposer composer = new PduComposer(ctx, sendRequest);
final byte[] bytesToSend = composer.make(); // byte , http "http://mmsc.monternet.com";
: 。
pdu :
- String subject = " ";
- String recipient = " ";//138xxxxxxx
- final SendReq sendRequest = new SendReq();
- final EncodedStringValue[] sub = EncodedStringValue.extract(subject);
- if (sub != null && sub.length > 0) {
- sendRequest.setSubject(sub[0]);
- }
- final EncodedStringValue[] phoneNumbers = EncodedStringValue.extract(recipient);
- if (phoneNumbers != null && phoneNumbers.length > 0) {
- sendRequest.addTo(phoneNumbers[0]);
- }
- final PduBody pduBody = new PduBody();
- final PduPart part = new PduPart();
- part.setName("sample".getBytes());
- part.setContentType("image/png".getBytes());
- String furl = "file://mnt/sdcard//1.jpg";
- final PduPart partPdu = new PduPart();
- partPdu.setCharset(CharacterSets.UTF_8);//UTF_16
- partPdu.setName(part.getName());
- partPdu.setContentType(part.getContentType());
- partPdu.setDataUri(Uri.parse(furl));
- pduBody.addPart(partPdu);
- sendRequest.setBody(pduBody);
- final PduComposer composer = new PduComposer(ctx, sendRequest);
- final byte[] bytesToSend = composer.make();
- Thread t = new Thread(new Runnable() {
- @Override
- public void run() {
- try {
- HttpConnectInterface.sendMMS(ctx, bytesToSend);
- //
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- });
- t.start();
- pdu :
- public static String mmscUrl = "http://mmsc.monternet.com";
- // public static String mmscUrl = "http://www.baidu.com/";
- public static String mmsProxy = "10.0.0.172";
- public static String mmsProt = "80";
- private static String HDR_VALUE_ACCEPT_LANGUAGE = "";
- // Definition for necessary HTTP headers.
- private static final String HDR_KEY_ACCEPT = "Accept";
- private static final String HDR_KEY_ACCEPT_LANGUAGE = "Accept-Language";
- private static final String HDR_VALUE_ACCEPT =
- "*/*, application/vnd.wap.mms-message, application/vnd.wap.sic";
- public static byte[] sendMMS(Context context, byte[] pdu)throws IOException{
- HDR_VALUE_ACCEPT_LANGUAGE = getHttpAcceptLanguage();
- if (mmscUrl == null) {
- throw new IllegalArgumentException("URL must not be null.");
- }
- HttpClient client = null;
- try {
- // Make sure to use a proxy which supports CONNECT.
- client = HttpConnector.buileClient(context);
- HttpPost post = new HttpPost(mmscUrl);
- //mms PUD START
- ByteArrayEntity entity = new ByteArrayEntity(pdu);
- entity.setContentType("application/vnd.wap.mms-message");
- post.setEntity(entity);
- post.addHeader(HDR_KEY_ACCEPT, HDR_VALUE_ACCEPT);
- post.addHeader(HDR_KEY_ACCEPT_LANGUAGE, HDR_VALUE_ACCEPT_LANGUAGE);
- //mms PUD END
- HttpParams params = client.getParams();
- HttpProtocolParams.setContentCharset(params, "UTF-8");
- HttpResponse response = client.execute(post);
- LogUtility.showLog(tag, "111");
- StatusLine status = response.getStatusLine();
- LogUtility.showLog(tag, "status "+status.getStatusCode());
- if (status.getStatusCode() != 200) { // HTTP 200 is not success.
- LogUtility.showLog(tag, "!200");
- throw new IOException("HTTP error: " + status.getReasonPhrase());
- }
- HttpEntity resentity = response.getEntity();
- byte[] body = null;
- if (resentity != null) {
- try {
- if (resentity.getContentLength() > 0) {
- body = new byte[(int) resentity.getContentLength()];
- DataInputStream dis = new DataInputStream(resentity.getContent());
- try {
- dis.readFully(body);
- } finally {
- try {
- dis.close();
- } catch (IOException e) {
- Log.e(tag, "Error closing input stream: " + e.getMessage());
- }
- }
- }
- } finally {
- if (entity != null) {
- entity.consumeContent();
- }
- }
- }
- LogUtility.showLog(tag, "result:"+new String(body));
- return body;
- } catch (IllegalStateException e) {
- LogUtility.showLog(tag, "",e);
- // handleHttpConnectionException(e, mmscUrl);
- } catch (IllegalArgumentException e) {
- LogUtility.showLog(tag, "",e);
- // handleHttpConnectionException(e, mmscUrl);
- } catch (SocketException e) {
- LogUtility.showLog(tag, "",e);
- // handleHttpConnectionException(e, mmscUrl);
- } catch (Exception e) {
- LogUtility.showLog(tag, "",e);
- //handleHttpConnectionException(e, mmscUrl);
- } finally {
- if (client != null) {
- // client.;
- }
- }
- return new byte[0];
- }