mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 11:17:25 +01:00
Fix image view with low resolution.
This commit is contained in:
parent
c705292bf8
commit
6ea0e9e3e6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user