android.webkit.WebHistoryItem
A convenience class for accessing fields in an entry in the back/forward list
of a WebView. Each WebHistoryItem is a snapshot of the requested history
item. Each history item may be updated during the load of a page.
Summary
Public Methods
Protected Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Methods
public
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: Java ensures 32-bit atomic read/write operations so we don't have
to synchronize this method.
public
int
getId()
Return an identifier for this history item. If an item is a copy of
another item, the identifiers will be the same even if they are not the
same object.
public
String
getTitle()
Return the document title of this history item.
Returns
- The document title of this history item.
Note: Java ensures 32-bit atomic read/write operations so we don't have
to synchronize this method.
public
String
getUrl()
Return the url of this history item. The url is the base url of this
history item. See getTargetUrl() for the url that is the actual target of
this history item.
Returns
- The base url of this history item.
Note: Java ensures 32-bit atomic read/write operations so we don't have
to synchronize this method.
Protected Methods
protected
synchronized
WebHistoryItem
clone()
Clone the history item for use by clients of WebView.
Returns
- Object a shallow copy of this object.