mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-26 01:28:50 -05:00
Fixed Issue 4222. Use of the wrong method to get device-SDK version resulting in errors on ApiLevel 7 (2.1) devices.
This commit is contained in:
parent
5b7dec3d78
commit
39f5587f30
@ -98,7 +98,13 @@ public class MessageWebView extends WebView {
|
|||||||
webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS);
|
webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Integer.parseInt(Build.VERSION.SDK) >= 9 ) {
|
/*
|
||||||
|
* Build.VERSION.SDK is deprecated cause it just returns the
|
||||||
|
* "its raw String representation"
|
||||||
|
* http://developer.android.com/reference/android/os/Build.VERSION_CODES.html#GINGERBREAD
|
||||||
|
* http://developer.android.com/reference/android/os/Build.VERSION.html#SDK
|
||||||
|
*/
|
||||||
|
if (Build.VERSION.SDK_INT >= 9) {
|
||||||
setOverScrollMode(OVER_SCROLL_NEVER);
|
setOverScrollMode(OVER_SCROLL_NEVER);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user