Is it possible to share screen one device to another device in android ???
While video call or audio call is running in android want to share my device's screen to other device so is it possible in android pragmatically?? please help
Is it possible to share screen one device to another device in android ???
While video call or audio call is running in android want to share my device's screen to other device so is it possible in android pragmatically?? please help
Yes it possible via Android's MediaProjection api.
As per documentation :
A screen capture session can be started through
MediaProjectionManager.createScreenCaptureIntent()
. This grants the ability to capture screen contents, but not system audio.
Please note: You can use this api only on device with API Level 21+ or android 5.0+
You can refer this Question for implementation !