mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
Merge pull request #137 from aatdark/aatdark_issue4222
Fixed Issue 4222. Use of the wrong method to get device-SDK version resu...
This commit is contained in:
commit
c9a747f199
@ -98,7 +98,13 @@ public class MessageWebView extends WebView {
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user