Android
android.webkit
public class

android.webkit.WebHistoryItem

java.lang.Object
android.webkit.WebHistoryItem Cloneable

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

          Bitmap  getFavicon()
Return the favicon of this history item or null if no favicon was found.
          int  getId()
Return an identifier for this history item.
          String  getTitle()
Return the document title of this history item.
          String  getUrl()
Return the url of this history item.

Protected Methods

  synchronized        WebHistoryItem  clone()
Clone the history item for use by clients of WebView.
Methods inherited from class java.lang.Object

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.

Returns

  • The id for this item.

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.
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56