Class Overview
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
Protected Methods |
synchronized
WebHistoryItem
|
clone()
Clone the history item for use by clients of WebView.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
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: The VM ensures 32-bit atomic read/write operations so we don't have
to synchronize this method.
public
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
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
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: The VM 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.