2


I want to develop an application which live-screencast from android tablet to smartboard or another android tablet.
Connection type between two devices should be wireless internet connection without using usb and bluetooth. I use android studio.
Is it possible to implement it? Could you suggest me some ways or libraries to do it?
I hope I make myself clear.
Any help is apreciated.
Thanks in advance.

EDIT

Our devices support v4.
In addition to the information above, I need an rdp library or api to do it.

Kerem YILDIZ
  • 70
  • 1
  • 8

1 Answers1

1

Android v5.0 lollipop is the first to provide some API for this. See the following links:

Media projection API overview

The screen grabber function

velis
  • 8,747
  • 4
  • 44
  • 64
  • Thank you for your reply, I forgot to say that our devices don't support v5. Do you know rdp (remote desktop protocol) library or api supporting v4? – Kerem YILDIZ Jan 26 '15 at 08:02
  • Android v4 or earlier has no API for grabbing screen. AFAIK you can only grab screen by hacking / accessing frame buffer directly. It's also different for each device. That's why there are no RDP servers for Android. – velis Jan 26 '15 at 09:08