[android-developers] Re: How do it Display Bitmaps frames per seconds in an ImageView efficiently ?

2015-12-19 Thread fah127
Hi, gjs. I tested with this way, but the app always has performance issues to use of the bitmap by long time. I am looking the way where I improve the performance the app. El sábado, 19 de diciembre de 2015, 1:45:22 (UTC-5), gjs escribió: > > Hi, > > Why not just - > > @Override > public void

[android-developers] Re: How do it Display Bitmaps frames per seconds in an ImageView efficiently ?

2015-12-18 Thread gjs
Hi, Why not just - @Override public void onFrame(final Bitmap mBitmap) { try { if (mBitmap != null && headerImageView != null) { headerImageView.setImageBitmap(mBitmap); } } catch (Exception e) {