Android 启动第三方程序的方法总结
Android 启动第三方程序的方法总结 方法一: Intent intent = new Intent(); intent.setClassName(, ); startActivity(intent); 方法二: Intent i=new Intent; ComponentName com= new ComponentName( , ); i.setComponent(com); startActivity(i); 启动媒体库 Intent i = new Intent(
下载地址
用户评论