Rejecting Incoming call in android

前端 未结 6 588
旧巷少年郎
旧巷少年郎 2020-12-01 02:37

I want to reject incoming in android, I have seen so many code from these links.

  1. Android: Taking complete control of phone(kiosk mode), is it possible? How?

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-01 02:57

    If you are going to build a kiosk app then i suggest you to obtain notification settings and put device to Do not Disturb mode ON.

    var mNotificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    
    mNotificationManager.setInterruptionFilter(NotificationManager.INTERRUPTION_FILTER_NONE)
    

提交回复
热议问题