I want to make video of my android screen(what i am doing on the android screen) programatically.
Is there any best tutorial or help regarding this. I have searched
you can use following code for screen capturing in Android.
ImageView v1 = (ImageView)findViewById(R.id.mImage); v1.setDrawingCacheEnabled(true); Bitmap bm = v1.getDrawingCache();
For Creating Video from Images visit this link.