Android应用中可以调用的系统Activity

Android系统内置了多个公共的activity,其他应用可以很方便的调用这些activity,而不用自己去实现。几次都用到了这部分知识,现在总结一些,方便以后参考。

1、拨号界面:

Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:123456789"));

startActivity(callIntent);

2、将电话号传入到拨号程序

Intent dialIntent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:123456789"));

startActivity(dialIntent);

3、调用拨号程序

Intent touchDialerIntent = new Intent(“coom.android.hone.action.TOUCH_DIALER”);

startActivity(touchDialerIntent);

4、浏览网页

Intent webIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.linuxidc.com"));

startActivity(webIntent);

5、向email客户端传递地址

Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:123@123.com"));

startActivity(emailIntent);

6、还可以直接将邮件内容发送到邮件客户端,暂时没用到

7、查看联系人

Intent contactIntent = new Intent(“com.android.cantacts.action.LIST_CONTACTS”));

startActivity(contactIntent);

8、显示系统设置界面

Intent settingIntent = new Intent(“com.”));

startActivity(contactIntent);

推荐阅读

Android的Activity生命周期

Android基础总结篇之一:Activity生命周期

Activity状态的保存与恢复

Android 的Activity和Service之间的通信

Android使用自定义透明Dialog样式的Activity 

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

转载注明出处:http://www.heiqu.com/6ad2d738007c45e2a8470a21df767dc7.html