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.
是否可以以编程方式打开消息应用程序指定号码和消息?
我不想直接发送消息,而是希望允许人们在发送消息之前选择特定的 SIM 卡。
是的,有可能
Intent intentsms = new Intent(Intent.ACTION_VIEW, Uri.parse("sms:"+phone)); intentsms.putExtra("sms_body", "text of massege"); startActivity(intentsms);