我如何在android中发送彩信?
我使用 UI 的代码如下:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("address", "5556");
intent.putExtra("sms_body", "Gudmng !!");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File("/sdcard/sky.png"));
intent.putExtra(Intent.EXTRA_STREAM, uri); // imageUri set
intent.setType("image/*")
startActivity(intent);
但是发送彩信仍然是例外
ERROR/HierarchicalStateMachine(68): TetherMaster - unhandledMessage: msg.what=3
有什么帮助吗?