Android功能代码
1.打开设置主界面 Intent intent = new Intent(android.provider.Settings.ACTION_SETTINGS); //系统设置 startActivityForResult( intent , 0); 2.打开网络设置界面(其他设置中的界面同理) Intent intent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);//WIFI设置 startActivity(intent); Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_SETTINGS);//管理应用程序界面 context.startActivity(intent); 或者用以下方法(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); 3.打开壁纸设置 Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER); startActivity(intent); 4.打开拨号界面 Intent intent = new Intent(Intent.ACTION_DIAL); startActivity(intent); 5.打开联系人界面 Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("vnd.android.cursor.dir/contact"); startActivity(intent); 6.打开通话记录 Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("vnd.android.cursor.dir/calls"); startActivity(intent); 7.打开短信列表界面 Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_DEFAULT); intent.setType("vnd.android-dir/mms-sms"); startActivity(intent);
- 1
- andy黄2015-01-29挺好的,就是太少了
- 粉丝: 0
- 资源: 1
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助