如果在使用android studio的sim卡中没有余额的通知

时间:2017-01-13 09:22:48

标签: notifications smsmanager

伙计们可以通过Android Studio知道SIM卡是否有平衡/加载。

我只想通知SIM卡是否有负载。

我有一个开关,用于使用Smsmanager发送一个常量文本...

here is my example

如果我尝试切换插座1(在没有检测到负载的情况下插入触发器),则开关将不会打开

顺便说一句,我使用这个

发送常量消息

// function o send message sms

 private void sendMessage(String phoneNo, String Message) {
        try {
            SmsManager smsManager = SmsManager.getDefault();
            smsManager.sendTextMessage(phoneNo, null, Message, null, null);
            Toast.makeText(getApplicationContext(), "Switching...", Toast.LENGTH_LONG).show();

        } catch (Exception e) {
            Toast.makeText(getApplicationContext(), "Message Sending Failed", Toast.LENGTH_LONG).show();
            e.printStackTrace();
        }

    }

0 个答案:

没有答案