我想打开ContentHandler
以全屏显示图像。所以我使用以下代码全屏查看选定的图像
Invocation invocation = new Invocation(imageFilePath);
invocation.setAction(ContentHandler.ACTION_OPEN);
Registry _registry = Registry .getRegistry(mypackagename.myuiapplication);
_registry.invoke(invocation);
上面的代码完美运行。但是当我全屏查看图像并退出应用程序时。但是我的应用程序会自行重新打开。
为什么我的应用程序会显示这种连线行为?