Android Question Screen capture will question

park jae hyun

Member
Licensed User
Longtime User
Hello
Screen capture will question
If the video on the screen ---> not captured.
By the way
Power button + volume down button ---> Capture ok

Please teach me
 

park jae hyun

Member
Licensed User
Longtime User
Are you asking about the IDE screen shot feature?

source

Obj1.Target = Obj1.GetActivityBA
Obj1.Target = Obj1.GetField("vg")
bmp.InitializeMutable(Activity.Width, Activity.Height)
c.Initialize2(bmp)
Dim args(1) As Object
Dim types(1) As String
Obj2.Target = c
Obj2.Target = Obj2.GetField("canvas")
args(0) = Obj2.Target
types(0) = "android.graphics.Canvas"
Obj1.RunMethod4("draw", args, types)
Dim Out As OutputStream
Out = File.OpenOutput(File.DirRootExternal, dt & ".png", False)
bmp.WriteToStream(Out, 100, "PNG")
Out.Close
 

Attachments

  • 160728100710.png
    160728100710.png
    47.3 KB · Views: 161
  • Screenshot_20160728-100718.png
    Screenshot_20160728-100718.png
    498.9 KB · Views: 184
Upvote 0
Top