HorizontalScrollView sv = new HorizontalScrollView(this);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.HORIZONTAL);
HorizontalScrollView sv = new HorizontalScrollView(this);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.HORIZONTAL);
Gray Scale
ColorMatrix matrix = new ColorMatrix();
matrix.setSaturation(0);
ColorMatrixColorFilter cf = new ColorMatrixColorFilter(matrix);
iv.setColorFilter(cf);
or
ColorMatrix matrix = new ColorMatrix(
new float[] { -1, 0, 0, 0, 255, 0, -1, 0, 0, 255, 0, 0, -1, 0, 255,0, 0, 0, 1, 0 });
ColorMatrixColorFilter cf = new ColorMatrixColorFilter(matrix);
iv.setColorFilter(cf);
다른 개발환경에서 설치한 혹은 서명key가 다른 동일한 어플리케이션이 설치되어 있을 때의 에러이다.
설치되어 있는 어플을 언인스톨 해주면 된다.