Skip to content

Releases: TheFinestArtist/FinestWebView-Android

1.2.1

15 Mar 03:16
Compare
Choose a tag to compare

Fixed critical issue #37

1.2.0

14 Mar 02:46
Compare
Choose a tag to compare
  1. Updated support library to 23.2.0
  2. Integrated AndroidBaseUtils
  3. Fixed issue #35
  4. Fixed issue #24

1.1.7

14 Feb 11:34
Compare
Choose a tag to compare

Added onDownloadStart listener.

public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long contentLength)

Added Find menu.

showMenuFind(boolean showMenuFind);
stringResFind(@StringRes int stringResFind);

1.1.6

26 Jan 16:11
Compare
Choose a tag to compare

Added load(String data) method to let webview to open html file.
Thanks @prashantwosti for the issue report and codes #9

1.1.5

26 Jan 15:53
Compare
Choose a tag to compare

Fixed #14

1.1.4

26 Jan 15:30
Compare
Choose a tag to compare
  1. Added WebViewListener
public void onProgressChanged(int progress);
public void onReceivedTitle(String title);
public void onReceivedTouchIconUrl(String url, boolean precomposed);

public void onPageStarted(String url);
public void onPageFinished(String url);
public void onLoadResource(String url);
public void onPageCommitVisible(String url);
  1. Allow to use Context to create builder object

1.1.2

11 Jan 06:30
Compare
Choose a tag to compare
  1. Fixed issues #18 #19
  2. Pulled #17

Thank you @mehmetakiftutuncu

1.1.1

30 Dec 13:13
Compare
Choose a tag to compare
  1. Added more webview options
webViewSupportZoom(boolean webViewSupportZoom);
webViewMediaPlaybackRequiresUserGesture (boolean webViewMediaPlaybackRequiresUserGesture);
webViewBuiltInZoomControls (boolean webViewBuiltInZoomControls);
webViewDisplayZoomControls (boolean webViewDisplayZoomControls);
webViewAllowFileAccess (boolean webViewAllowFileAccess);
webViewAllowContentAccess (boolean webViewAllowContentAccess);
webViewLoadWithOverviewMode (boolean webViewLoadWithOverviewMode);
webViewSaveFormData (boolean webViewSaveFormData);
webViewTextZoom (int webViewTextZoom);
webViewUseWideViewPort (boolean webViewUseWideViewPort);
webViewSupportMultipleWindows (boolean webViewSupportMultipleWindows);
webViewLayoutAlgorithm (WebSettings.LayoutAlgorithm webViewLayoutAlgorithm);
webViewStandardFontFamily (String webViewStandardFontFamily);
webViewFixedFontFamily (String webViewFixedFontFamily);
webViewSansSerifFontFamily (String webViewSansSerifFontFamily);
webViewSerifFontFamily (String webViewSerifFontFamily);
webViewCursiveFontFamily (String webViewCursiveFontFamily);
webViewFantasyFontFamily (String webViewFantasyFontFamily);
webViewMinimumFontSize (int webViewMinimumFontSize);
webViewMinimumLogicalFontSize (int webViewMinimumLogicalFontSize);
webViewDefaultFontSize (int webViewDefaultFontSize);
webViewDefaultFixedFontSize (int webViewDefaultFixedFontSize);
webViewLoadsImagesAutomatically (boolean webViewLoadsImagesAutomatically);
webViewBlockNetworkImage (boolean webViewBlockNetworkImage);
webViewBlockNetworkLoads (boolean webViewBlockNetworkLoads);
webViewJavaScriptEnabled (boolean webViewJavaScriptEnabled);
webViewAllowUniversalAccessFromFileURLs (boolean webViewAllowUniversalAccessFromFileURLs);
webViewAllowFileAccessFromFileURLs (boolean webViewAllowFileAccessFromFileURLs);
webViewGeolocationDatabasePath (String webViewGeolocationDatabasePath);
webViewAppCacheEnabled (boolean webViewAppCacheEnabled);
webViewAppCachePath (String webViewAppCachePath);
webViewDatabaseEnabled (boolean webViewDatabaseEnabled);
webViewDomStorageEnabled (boolean webViewDomStorageEnabled);
webViewGeolocationEnabled (boolean webViewGeolocationEnabled);
webViewJavaScriptCanOpenWindowsAutomatically (boolean webViewJavaScriptCanOpenWindowsAutomatically);
webViewDefaultTextEncodingName (String webViewDefaultTextEncodingName);
webViewUserAgentString (String webViewUserAgentString);
webViewNeedInitialFocus (boolean webViewNeedInitialFocus);
webViewCacheMode (int webViewCacheMode);
webViewMixedContentMode (int webViewMixedContentMode);
webViewOffscreenPreRaster (boolean webViewOffscreenPreRaster);

1.1.0

28 Dec 07:15
Compare
Choose a tag to compare
  1. Add visibility & enable option for toolbar icons
showIconClose(boolean showIconClose);
disableIconClose(boolean disableIconClose);
showIconBack(boolean showIconBack);
disableIconBack(boolean disableIconBack);
showIconForward(boolean showIconForward);
disableIconForward(boolean disableIconForward);
showIconMenu(boolean showIconMenu);
disableIconMenu(boolean disableIconMenu);

1.0.9

26 Dec 11:07
Compare
Choose a tag to compare
  1. Fixed memory leak bug cause by WebView by @SilenceDut