我寫了這個簡單的代碼來獲得來自瀏覽器的書籤:如何使用瀏覽器內容提供程序?
public class BroswerProviderActivity extends ListActivity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Cursor cursor = getContentResolver().query(Browser.BOOKMARKS_URI, null, null, null, null);
String s[] = new String[]{
Browser.BookmarkColumns.BOOKMARK,
Browser.BookmarkColumns.TITLE};
int view[] = new int[]{
R.id.Bookmark, R.id.title};
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.main, cursor, s, view);
this.setListAdapter(adapter);
}
}
我還添加了清單文件的權限:
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS">
但是,當我運行這個程序,它是不工作。它顯示一些錯誤並要求強制停止應用程序。這有什麼問題?請幫助我。謝謝
這是我從LogCat窗口得到的異常。但是,這是不相關的:
下面是我寫的XML文件:
<ListView android:transcriptMode="normal" android:id="@+id/list" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1.0"></ListView>
<TextView android:text="TextView" android:id="@+id/bookmark" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<TextView android:text="TextView" android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
什麼樣的錯誤? –
由於您正在獲得「強制關閉」對話框:請從logcat發佈堆棧跟蹤。謝謝。 – 2011-10-08 12:38:02
@PeterKnego請看我在LogCat中得到的異常 – Pramod