File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
src/main/java/com/thefinestartist/finestwebview Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Easily reference the library in your Android projects using this dependency in y
5252
5353``` java
5454dependencies {
55- compile ' com.thefinestartist:finestwebview:1.1.4 '
55+ compile ' com.thefinestartist:finestwebview:1.1.5 '
5656}
5757```
5858
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ android {
1414 minSdkVersion 7
1515 targetSdkVersion 23
1616 versionCode 1
17- versionName " 1.1.4 "
17+ versionName " 1.1.5 "
1818 }
1919}
2020
@@ -34,7 +34,7 @@ publish {
3434 userOrg = ' thefinestartist'
3535 groupId = ' com.thefinestartist'
3636 artifactId = ' finestwebview'
37- publishVersion = ' 1.1.4 '
37+ publishVersion = ' 1.1.5 '
3838 desc = ' Beautiful and customizable Android Activity that shows web pages within an app.'
3939 website = ' https://github.com/TheFinestArtist/FinestWebView-Android'
4040}
Original file line number Diff line number Diff line change @@ -478,6 +478,14 @@ protected void layoutViews() {
478478 }
479479 progressBar .setLayoutParams (params );
480480 }
481+
482+ { // WebLayout
483+ float toolbarHeight = getResources ().getDimension (R .dimen .toolbarHeight );
484+ int screenHeight = ScreenHelper .getHeight (this );
485+ float webLayoutMinimumHeight = screenHeight - toolbarHeight ;
486+ if (showDivider && !gradientDivider ) webLayoutMinimumHeight -= dividerHeight ;
487+ webLayout .setMinimumHeight ((int ) webLayoutMinimumHeight );
488+ }
481489 }
482490
483491 @ SuppressLint ("SetJavaScriptEnabled" ) protected void initializeViews () {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ android {
99 minSdkVersion 7
1010 targetSdkVersion 23
1111 versionCode 9
12- versionName " 1.1.4 "
12+ versionName " 1.1.5 "
1313 }
1414 buildTypes {
1515 release {
You can’t perform that action at this time.
0 commit comments