在Android中使用CoronaActivity捕获屏幕

时间:2014-03-13 11:14:38

标签: android android-activity lua corona

我试图通过CoronaActivity在Android中捕获屏幕,但没有成功。我不确定这是否可行。

尝试:

view = coronaActivity.getWindow().getDecorView().getRootView()
view.setDrawingCache(true)
view.compress(Bitmap.CompressFormat.PNG, 90, out)
...

1 个答案:

答案 0 :(得分:0)

做这样的事情:

local function saveImage(event)
    if(event.phase=="ended") then
      local hello = display.captureScreen(true)
      hello:removeSelf()
      local alert = native.showAlert( "Success", "Screen Capture Saved to Gallery", { "Done" } )
    end
end