android 如何在彩信中的“幻灯片”中插入文本?
private void slideShow(File f1,File f2){
ArrayList<Uri> uris = new ArrayList<Uri>();
final Intent mmsIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
mmsIntent.setType("*/*");
mmsIntent.putExtra("address", "0123456");
mmsIntent.putExtra("sms_body", "the body");
uris.add(Uri.fromFile(new File(Environment.getExternalStorageDirectory()+"/"+"1.jpg")));
uris.add(Uri.fromFile(new File(Environment.getExternalStorageDirectory()+"/"+"2.jpg")));
uris.add(Uri.fromFile(new File(Environment.getExternalStorageDirectory()+"/"+"3.jpg")));
mmsIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
startActivity(mmsIntent);
}