在android软件开发中求怎么实现打开其他软件后自动点击其他软件上按钮?求源码,或者方法,最好是 100
在android软件开发中求怎么实现打开其他软件后自动点击其他软件上按钮?求源码,或者方法,最好是源码!...
在android软件开发中求怎么实现打开其他软件后自动点击其他软件上按钮?求源码,或者方法,最好是源码!
展开
1个回答
2016-04-21 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
求大神指点 代码如下:public void onClick(View v) { Intent intent = new Intent(); Log.d("fileName",fileName); File file = new File("/storage/sdcard0/Map/"+fileName); if(file.isFile()&&!file.isDirectory()){ //intent.setData(Uri.fromFile(file)); //添加进要打开的文件的uri intent.setDataAndType(Uri.fromFile(file),"application/x-autocad"); //调用软件打开指定的图纸文件 intent.setClassName("com.gstar.android","com.gstar.android.WelcomeActivity"); //intent.setClassName("com.rainbow.PicSee","com.rainbow.PicSee.PicSee"); startActivity(intent); Toast.makeText(getApplicationContext(), "打开文件成功", 0).show(); }else{ Toast.makeText(getApplicationContext(), "非合法格式文件", 0).show(); } } });
追问
不是这个!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询