我正在制作SMS管理应用程序。这是我的密码。
接收机码:
private val receiver = object : BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent) {
val id = intent.getIntExtra("id", 0)
if (resultCode == Activity.RESULT_OK) {
Log.d("SMS", "Success to sen
这个过程对我来说是可能的,也是有意义的吗?
用户A:使用智能手机
用户B:使用旧型号的手机(如诺基亚103,三星GT-E1200T)
1. User A request a booking through mobile app
2. Then, SMS is delivered to every user B
3. User B reply through SMS
4. Available users B will be listed in the mobile app used by the user A. If User B reject the request, the
我一直在阅读,链接显示sms:?body=test body message应该可以工作,但它似乎不能在Windows Nokia Lumia手机上工作。而这段代码可以在android手机上运行。
顺便说一句,sms:;body=test body message可以在iphone上运行。
有什么建议吗?