打开设置主界面

Intent intent = new Intent(Android.provider.Settings.ACTION_SETTINGS); //系统设置

startActivityForResult( intent , 0);

打开网络设置界面(其他设置中的界面同理)

Intent intent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);//WIFI设置

startActivity(intent);

new Intent(android.provider.Settings.ACTION_APPLICATION_SETTINGS);//管理应用程序界面

new Intent(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);//打开蓝牙设置

或者用以下方法(3.0以前的版本可以用此方法)

Intent intent = new Intent("/");

ComponentName cm = new ComponentName("com.android.settings","com.android.settings.WirelessSettings");

intent.setComponent(cm);

intent.setAction("android.intent.action.VIEW");

startActivityForResult( intent , 0);

打开壁纸设置

Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER);

startActivity(intent);

打开拨号界面

Intent intent = new Intent(Intent.ACTION_DIAL);

startActivity(intent);

打开联系人界面

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setType("vnd.android.cursor.dir/contact");

startActivity(intent);

打开通话记录

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setType("vnd.android.cursor.dir/calls");

startActivity(intent);

打开短信列表界面

Intent intent = new Intent(Intent.ACTION_MAIN);

intent.addCategory(Intent.CATEGORY_DEFAULT);

intent.setType("vnd.android-dir/mms-sms");

startActivity(intent);

打开相册和视频

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setType("vnd.android.cursor.dir/image");//图片列表

intent.setType("vnd.android.cursor.dir/video");//视频列表

startActivity(intent);

打开mp3播放器

Intent intent = new Intent("android.intent.action.MUSIC_PLAYER");

startActivity(intent);

打开照相机

Intent intent = new Intent("android.media.action.STILL_IMAGE_CAMERA");

startActivity(intent);

打开录音

选择一张照片或一个mp3文件或一个mp4文件

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//图片

intent.setType("image/*");

startActivityForResult(Intent.createChooser(intent, "Select Picture"),1);

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//音频

intent.setType("audio/*");

startActivityForResult(Intent.createChooser(intent, "Select music"),1);

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//视频

intent.setType("video/*");

startActivityForResult(Intent.createChooser(intent, "Select movie"),1);

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//录音

intent.setClassName("com.android.soundrecorder", "com.android.soundrecorder.SoundRecorder");

intent.setType("audio/*");

startActivityForResult(Intent.createChooser(intent, "Select movie"),1);

android的intent打开系统程序的更多相关文章

  1. 通过Intent 打开系统级应用

    众所周知,各个手机厂商由于对Android 原生系统定制的原因,会造成系统级应用packname 和activityname 不同的现象,就拿时钟软件来说,魅族2的activityname 是[com ...

  2. msys 中打开系统程序

    按照msys 后发现sh自带的vim不好用,下载安装了个gvim,在etc/profile中作如下设置: alias gvim="D:/Program\ Files/Vim/vim73/gv ...

  3. android 程序打开第三方程序

    因为在开发过程中需要开启扫描第三方程序,并且点击启动的效果,所以对这个功能进行了实现,并且分享出来个大家. 之前看到网上说需要获取包名和类名,然后通过  intent 才能打开这个程序,其实不必要这样 ...

  4. Android 打开系统相册和系统视

    1.打开系统相册 Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("vnd.android.cursor.dir ...

  5. Android第一次打开应用程序,实现向导界面

    转载请注明出处,谢谢http://blog.csdn.net/harryweasley/article/details/42079167 先说下思路:1.利用Preference存储数据,来记录是否是 ...

  6. Android 监听 Android中监听系统网络连接打开或者关闭的实现代码

    本篇文章对Android中监听系统网络连接打开或者关闭的实现用实例进行了介绍.需要的朋友参考下 很简单,所以直接看代码 复制代码 代码如下: package xxx; import android.c ...

  7. 安卓 通过intent调用系统文件管理器打开指定路径目录

    安卓 通过intent调用系统文件管理器打开指定路径目录     转  https://blog.csdn.net/qq_34161388/article/details/78586247 当我们知道 ...

  8. Android -- 分享功能和打开指定程序

    打开指定程序                                                                                Intent intent ...

  9. android 推断应用程序是系统程序还是用户程序

    直接上代码: AppInfo.java <span style="font-size:18px;">package com.example.packages; publ ...

随机推荐

  1. VB编程技巧推荐

    VB编程技巧推荐   1.zyl910的专栏——理论水平高 用VB写高效的图像处理程序 V2.0 优化分支代码——避免跳转指令堵塞流水线 2.Laviewpbt的专栏 —— 有很多算法的代码,实用性高 ...

  2. try{...} catch {...} finally{...} 各种情况代码的执行情况

    try { int i = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("in the 'try'"); } ca ...

  3. 提示用户体验的最佳免费 Jquery 表单插件

    网页表单是一个老生常谈的话题.出于这样或那样的目的,一些示例中都会包括用户注册,电子商务结算,用户设置甚至联系人表格.而输入栏是非常容易用现代的CSS3技术来应用样式.但是到底什么决定整体用户体验? ...

  4. c#使用Microsoft Excel 12.0 object Libary导出的Excel文件office2003不能打开!!~~(分享)

    -----转载:http://hi.baidu.com/zhang_zhu_1/item/f3d47d1f86bf037a70d5e87e 使用C#导出数据到Excel文件时,Excel 2007组件 ...

  5. Lock锁_线程_线程域

    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Sy ...

  6. (转帖) 有限狀態機FSM coding style整理 (SOC) (Verilog)

    来源:http://www.codesoso.net/Record/101092_95120_21.html 来源:http://www.cnblogs.com/oomusou/archive/201 ...

  7. 三、改变struts.xml默认路径后web.xml如何配置

    http://yanln.iteye.com/blog/2189816(文章很好)

  8. oracle中创建一个用户,只能查看指定的视图,如何授权,创建别名

    1.create user A identified by Apassword,创建用户,用户名是A,密码是Apassword2.grant connect to A --授予connect权限3.g ...

  9. pod install后出现的错误

    [!] Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use T ...

  10. Sql Server 远程过程调用失败

    很多搞开发的同志们,相信在刚刚使用sql server2008+c#2012(2012以上版本)会出现下面图片中的问题,这时因为安装Visual Studio 2013或者2012版本的时候,会自动安 ...