Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android monitor throw E/HW-JPEG-DEC after update to android 7

Tags:

java

android

after update phone to android 7 when i build app again Android Monitor throw error:

E/HW-JPEG-DEC: HME_JPEG_DEC_Delete: HME_JPEG_DEC_Delete: decoder_ctx=null

like image 699
Kamil Imiełowski Avatar asked May 10 '17 12:05

Kamil Imiełowski


1 Answers

I was face this problem and some of the design on my app didn't appear,

after long search I found the problem and it was with scrollView rotate attribute,

So if you use any scrollView or autoScrollViewPager or gridView or any type of view that using scroll, please check if you use any attribute that related to rotation or direction for the scrollView like android:rotateY = "180".

instead of using this, try to use android:scaleX="-1".

This help me to fix my problem.

like image 125
Lana.Manaseer Avatar answered Sep 21 '22 21:09

Lana.Manaseer