I would like to implement some sort of remote assistance tool (like vnc) for Android. Is there the possibility to capture a screen programmatically on the device?
Something like that might work for you:
View v = view.getRootView(); v.setDrawingCacheEnabled(true); Bitmap b = v.getDrawingCache();
1.4m articles
1.4m replys
5 comments
57.0k users