Android 常用的intent Action整理(2)

Intent intent = newIntent("android.intent.action.CALL_PRIVILEGED"); 
       intent.setClassName("com.skype.raider",
        "com.skype.raider.Main");
       intent.setData(Uri.parse("tel:" + phone)); 
        startActivity(intent);

15. Intent.ACTION_CLOSE_SYSTEM_DIALOGS

当屏幕超时进行锁屏时,当用户按下电源按钮,长按或短按(不管有没跳出话框),进行锁屏时,android系统都会广播此Action消息

以上是对常见的action进行总结,action其实有很多,如果要使用上文没有列举到的,google即可。

更多Android相关信息见Android 专题页面 ?tid=11

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wywwxd.html