I am trying to get values ββfrom myImageView.getImageMatrix() method when my activity is ready. I tried using the methods onCreate() , onStart() , onResume() , but the matrix that I get is the default value.
If I call myImageView.getImageMatrix() called by OnClickListener after my activity is visible, I get the correct values.
Just to be more clear:
call getImageMatrix onStart = Matrix{[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]}
call getImageMatrix onClick = Matrix{[0.77488154, 0.0, 7.6717987][0.0, 0.77488154, 0.0][0.0, 0.0, 1.0]}
android events matrix image
Shlomi schwartz
source share