WebHistoryItem


public abstract class WebHistoryItem
extends Object implements Cloneable

java.lang.Object
   ↳ 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.

See also:

Summary

Public constructors

WebHistoryItem()

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.

Protected methods

abstract WebHistoryItem clone()

Clone the history item for use by clients of WebView.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

WebHistoryItem

public WebHistoryItem ()

Public methods

getFavicon

Added in API level 1
public abstract Bitmap getFavicon ()

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

Returns
Bitmap A Bitmap containing the favicon for this history item or null.

getOriginalUrl

Added in API level 3
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
String The original url of this history item.

getTitle

Added in API level 1
public abstract String getTitle ()

Return the document title of this history item.

Returns
String The document title of this history item.

getUrl

Added in API level 1
public abstract 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
String The base url of this history item.

Protected methods

clone

Added in API level 1
protected abstract WebHistoryItem clone ()

Clone the history item for use by clients of WebView. On Android 4.4 and later there is no need to use this, as the object is already a read-only copy of the internal state.

Returns
WebHistoryItem a clone of this instance.