Nikhil Dubbaka
Nikhil Dubbaka
@MonikaJethani Yes. The bug still exists in my code. I don't know what's wrong there and how to fix it.
@DilumD ``` imageMatrixTouchHandler = new ImageMatrixTouchHandler(mContext, corrector) { @Override public boolean onTouch(View view, final MotionEvent event) { super.onTouch(view, event); } }; TouchImageView.super.setOnTouchListener(imageMatrixTouchHandler); try { imageMatrixTouchHandler.animateZoom(0, 0); } catch (Exception e)...
I have the same issue as @sashafiero Until we find a real solution, I followed what @sashafiero did with "making a new ImageView" ``` ViewGroup.LayoutParams lParams = ivImage.getLayoutParams(); imageParentLayout.removeView(ivImage); ivImage...
That ImageViewPager worked great. Thanks @martinwithaar Also do you know how I can get only the zoomed visible drawable bitmap from imageview? not the entire image. Only the zoomed visible...
or how to get the zoom scale & calculate relative (x, y) position of touched point? The problem is OCR gives x, y position of text block from original image....
``` public void refreshSpinner(){ _proxyAdapter.clear(); _proxyAdapter.add(buildSelectedItemString()); } ``` ``` String[] strings = { "Red", "Blue", "Green" }; MultiSelectSpinner mySpin = (MultiSelectSpinner)findViewById(R.id.spinner_options); mySpin.setItems(strings); mySpin.setSelection(new int[] {1,2}); mySpin.refreshSpinner(); ```