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