Merge pull request #92 from OHermesJunior/fix-image-view-resolution

Fix image view with low resolution in ViewImageActivity.
This commit is contained in:
Docile-Alligator 2020-05-12 09:52:06 +08:00 committed by GitHub
commit b4e6f00074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,6 +91,7 @@ public class ViewImageActivity extends AppCompatActivity {
private String mImageFileName;
private float totalLengthY = 0.0f;
private float touchY = -1.0f;
private float initialZoom = 1.0f;
private float zoom = 1.0f;
private boolean isSwiping = false;
private RequestManager glide;
@ -327,7 +328,7 @@ public class ViewImageActivity extends AppCompatActivity {
@Override
public void onStateReset(State oldState, State newState) {
initialZoom = newState.getZoom();
}
});
@ -367,7 +368,7 @@ public class ViewImageActivity extends AppCompatActivity {
mProgressBar.setVisibility(View.GONE);
return false;
}
}).apply(new RequestOptions().fitCenter()).into(mImageView);
}).into(mImageView);
}
@Override
@ -455,7 +456,7 @@ public class ViewImageActivity extends AppCompatActivity {
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
if (zoom == 1.0) {
if (Math.abs(zoom - initialZoom) <= 0.000001) {
swipe.dispatchTouchEvent(ev);
}
return super.dispatchTouchEvent(ev);