当前位置:   article > 正文

android 打开系统程序 显示系统图片与视频(用于备忘)_android 打开系统文件管理器选择照片或者视频并展示封面图

android 打开系统文件管理器选择照片或者视频并展示封面图

转载请标明出处。

打开相册和视频


跳转到图片与视频显示

  1. intent = new Intent(Intent.ACTION_VIEW);
  2. //图片和视频
  3. intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
  4. //等价于intent.setData(Uri.parse("content://media/external/images/media"));
  5. //由log输出可以看到: MediaStore.Images.Media.EXTERNAL_CONTENT_URI 的值就是 "content://media/external/images/media"

跳转到只有图片显示

  1. intent = new Intent(Intent.ACTION_VIEW);
  2. //跳转到视频
  3. intent.setType("vnd.android.cursor.dir/image");


跳转到视频

  1. intent = new Intent(Intent.ACTION_VIEW);
  2. //跳转到视频
  3. intent.setType("vnd.android.cursor.dir/video");

以下下是复制网上的:http://blog.csdn.net/xubright/article/details/8704873

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

  1. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//图片
  2. intent.setType("image/*");
  3. startActivityForResult(Intent.createChooser(intent, "Select Picture"),1);
  4. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//音频
  5. intent.setType("audio/*");
  6. startActivityForResult(Intent.createChooser(intent, "Select music"),1);
  7. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//视频
  8. intent.setType("video/*");
  9. startActivityForResult(Intent.createChooser(intent, "Select movie"),1);
  10. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//录音
  11. intent.setClassName("com.android.soundrecorder", "com.android.soundrecorder.SoundRecorder");
  12. intent.setType("audio/*");
  13. startActivityForResult(Intent.createChooser(intent, "Select movie"),1);

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

打开设置主界面

  1. Intent intent = new Intent(android.provider.Settings.ACTION_SETTINGS); //系统设置
  2. startActivityForResult( intent , 0);


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

  1. Intent intent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);//WIFI设置
  2. startActivity(intent);
  3. new Intent(android.provider.Settings.ACTION_APPLICATION_SETTINGS);//管理应用程序界面
  4. new Intent(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);//打开蓝牙设置
  5. //或者用以下方法(3.0以前的版本可以用此方法)
  6. Intent intent = new Intent("/");
  7. ComponentName cm = new ComponentName("com.android.settings","com.android.settings.WirelessSettings");
  8. intent.setComponent(cm);
  9. intent.setAction("android.intent.action.VIEW");
  10. startActivityForResult( intent , 0);


打开壁纸设置

  1. Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER);
  2. startActivity(intent);


打开拨号界面

  1. Intent intent = new Intent(Intent.ACTION_DIAL);
  2. startActivity(intent);


打开联系人界面

  1. Intent intent = new Intent(Intent.ACTION_VIEW);
  2. intent.setType("vnd.android.cursor.dir/contact");
  3. startActivity(intent);


打开通话记录

  1. Intent intent = new Intent(Intent.ACTION_VIEW);
  2. intent.setType("vnd.android.cursor.dir/calls");
  3. startActivity(intent);


打开短信列表界面

  1. Intent intent = new Intent(Intent.ACTION_MAIN);
  2. intent.addCategory(Intent.CATEGORY_DEFAULT);
  3. intent.setType("vnd.android-dir/mms-sms");
  4. startActivity(intent);


打开mp3播放器

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


打开照相机

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



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/175269
推荐阅读
相关标签
  

闽ICP备14008679号