B4A Library [B4A] - AH_TakeScreenShot - Take a screenshot (Library)

Hi all,
You can take a screenshot of the screen with a single line of code. in the next version you can take a screen shot with desired view.
this zip file have a library and a sample.

Currently version v1.0 (2021/05/23)

ezgif.com-gif-maker.gif


AH_TakeAScreenShot:
Private Sub BTN_ScreenShot_Click
    Dim bitmap As Bitmap
    bitmap.Initialize3(AH_TakeAScreenShot.TakeaScreenShot_Activity)
    ImageView1.SetBackgroundImage(bitmap)
    ToastMessageShow("done!",True)
End Sub

‍Please like this post to increase my motivation. :)
You can subscribe to my Telegram channel to use my text and video tutorials : @B4X_Develop
 

Attachments

  • AH_TakeScreenShot.zip
    435.2 KB · Views: 699
Last edited:
Top