Monday, August 16, 2010

How to do in Web related components ?

16 Aug 2010
How to get the bookmarks ?

Cursor cursor = Browser.getAllBookmarks(getContentResolver());
cursor.moveToFirst();
do {
Log.d("Bookmark: ", cursor.getString(1));
} while (cursor.moveToNext());


How to load data in WebView ?

webview.loadData("<html></html>", "text/html", "utf-8");

No comments:

Post a Comment