Android 启动第三方程序的方法总结

时间:2021-05-21

Android 启动第三方程序的方法总结

方法一:

Intent intent = new Intent(); intent.setClassName(<package name>, <class name>); startActivity(intent);

方法二:

Intent i=new Intent;ComponentName com= new ComponentName(<Package Name> , <Calss Name>); i.setComponent(com); startActivity(i);

启动媒体库

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);

启动htmlviewer,并打开指定的一个文件 注意TXT不能是ANSI的,否则会乱码

Intent intent = new Intent();ComponentName cn = new ComponentName("com.android.htmlviewer", "com.android.htmlviewer.HTMLViewerActivity");intent.setComponent(cn);Uri uri = Uri.fromFile(new File("/sdcard/demo.txt"));intent.setDataAndType(uri, "text/plain");startActivity(intent);

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章