Android Screen capturing or make video from images

前端 未结 3 718
小蘑菇
小蘑菇 2020-12-16 07:31

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

3条回答
  •  情书的邮戳
    2020-12-16 07:56

    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.

提交回复
热议问题