public interface

IX5WebHistoryItem

com.tencent.smtt.export.external.interfaces.IX5WebHistoryItem

Summary

Public Methods
abstract Bitmap getFavicon()
Return the favicon of this history item or null if no favicon was found.
abstract String getOriginalUrl()
Return the original url of this history item.
abstract String getTitle()
Return the document title of this history item.
abstract String getUrl()
Return the url of this history item.

Public Methods

public abstract Bitmap getFavicon ()

Return the favicon of this history item or null if no favicon was found.

Returns
  • A Bitmap containing the favicon for this history item or null. Note: The VM ensures 32-bit atomic read/write operations so we don't have to synchronize this method.

public abstract String getOriginalUrl ()

Return the original url of this history item. This was the requested url, the final url may be different as there might have been redirects while loading the site.

Returns
  • The original url of this history item.

public abstract String getTitle ()

Return the document title of this history item.

Returns
  • The document title of this history item. Note: The VM ensures 32-bit atomic read/write operations so we don't have to synchronize this method.

public abstract String getUrl ()

Return the url of this history item. The url is the base url of this history item.

Returns
  • The base url of this history item. Note: The VM ensures 32-bit atomic read/write operations so we don't have to synchronize this method.