本文转自:http://www.elexcon.com/news/55190.html

 

//启动媒体库

  Intent i = new Intent();

  ComponentName comp =

  new ComponentName("com.Android.camera","com.android.camera.GalleryPicker");

  i.setComponent(comp);

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

  startActivity(i);

  //启动相机

  Intent mIntent = new Intent();

  ComponentName comp = new ComponentName("com.android.camera","com.android.camera.Camera");

  mIntent.setComponent(comp);

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

  startActivity(mIntent);

 

相关文章:

  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2021-08-26
  • 2021-05-03
猜你喜欢
  • 2021-08-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-10
相关资源
相似解决方案