Lines Matching refs:item
31 * Custom layout for an item representing a bookmark in the browser.
45 * Instantiate a bookmark item, including a default favicon.
47 * @param context The application context for the item.
64 * Copy this BookmarkItem to item.
65 * @param item BookmarkItem to receive the info from this BookmarkItem.
67 /* package */ void copyTo(BookmarkItem item) {
68 item.mTextView.setText(mTextView.getText());
69 item.mUrlText.setText(mUrlText.getText());
70 item.mImageView.setImageDrawable(mImageView.getDrawable());
74 * Return the name assigned to this bookmark item.
85 * Set the favicon for this item.
87 * @param b The new bitmap for this item.
103 * Set the new name for the bookmark item.
105 * @param name The new name for the bookmark item.
122 * Set the new url for the bookmark item.
123 * @param url The new url for the bookmark item.