コード例 #1
0
  /** Fill the bookmark to the list UI. */
  private void fillData() {
    mCursor = mDbAdapter.fetchBookmarks();
    startManagingCursor(mCursor);

    String[] from = new String[] {DbAdapter.BOOKMARKS_TITLE, DbAdapter.BOOKMARKS_URL};
    int[] to = new int[] {R.id.BookmarkRow_Title, R.id.BookmarkRow_Url};

    mCursorAdapter = new BookmarksCursorAdapter(this, R.layout.bookmarkrow, mCursor, from, to);
    setListAdapter(mCursorAdapter);

    setAnimation();

    // mCursor.close();
  }