is it possible to capture what's going on in an android screen as video, either on the device itself or the emulator?
thanks!
我想从另一个应用程序调用一个Android应用程序
我已经尝试了一些示例,但它们不适合我,我收到了一个包解析错误.
考虑有两个应用程序:Application1和Application2
我想从Application1调用Application2
以下是一些示例代码:
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(fileName),"application/vnd.android.package-archive");
startActivity(i);
Run Code Online (Sandbox Code Playgroud)
这里 fileName = "file://data/data/package_name/files/Application1.apk";