android打开系统工具的动作

1.打开浏览器
Uri uri = Uri.parse("https://www.baidu.com");  
Intent intent = new Intent(Intent.ACTION_VIEW, uri);  
startActivity(intent);


2.显示地图:
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent it = new Intent(Intent.Action_VIEW,uri);

startActivity(it);

3.调用拨号程序
Uri uri = Uri.parse("tel:xxxxxx");
Intent it = new Intent(Intent.ACTION_DIAL, uri);  
startActivity(it); 

4.拨打电话:
Uri uri = Uri.parse("tel:xxxxxx");
Intent it = new Intent(Intent.ACTION_DIAL, uri);  
startActivity(it);  


5.调用拨号程序权限<uses-permission id="android.permission.CALL_PHONE" />
Uri uri = Uri.parse("tel.xxxxxx");
Intent it =new Intent(Intent.ACTION_CALL,uri);

6.调用发送短信的程序
Intent it = new Intent(Intent.ACTION_VIEW);   
it.putExtra("sms_body", "The SMS text");   
it.setType("vnd.android-dir/mms-sms");   
startActivity(it);  

7.发送短信
Uri uri = Uri.parse("smsto:0800000123");   
Intent it = new Intent(Intent.ACTION_SENDTO, uri);   
it.putExtra("sms_body", "The SMS text");   
startActivity(it); 

8.uninstall apk
Uri uninstallUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);

9.install apk
Uri installUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

10.启动录像模式:
Intent i = new Intent();
i.setAction(“android.media.action.VIDEO_CAMERA“);
startActivity(i);


11.启用照相模式:
Intent i = new Intent();
i.setAction(“android.media.action.STILL_IMAGE_CAMERA“);
startActivity(i);



猜你喜欢

转载自blog.csdn.net/gerryrun/article/details/78981962