Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以dalvikvm从应用程序或 ADB shell 内部启动 .dex 文件,然后获取调用方应用程序上下文或创建新上下文以在 API 调用中使用?
dalvikvm
例如,我可以dalvikvm -cp [class].dex [class]使用 运行并显示 toast 消息Toast.makeText()吗?
dalvikvm -cp [class].dex [class]
Toast.makeText()
作为参考,我正在运行 Android Nougat 7.1(API 级别 25)。
不会。使用 dalvikvm 运行的 dex 文件与 android 应用程序无关,并且不会在 android 真正意识到的进程中运行,并且通常不能使用许多 android 特定的 api。