Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 SD 卡中的图像并在 android 中以编程方式将其转发到另一个号码。图像和电话号码都是预定义的。所以不需要 UI .. 有人可以帮忙吗?
谢谢!!
如果您需要发送彩信,请使用以下代码段:
Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra("sms_body", "some text"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url)); sendIntent.setType("image/png");
这里 uri 是你的文件的路径。另外,您还可以定义要发送此彩信的号码。