Lots of updates:
[zxing.git] / android / src / com / google / zxing / client / android / BookmarkPickerActivity.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android;
18
19 import android.app.ListActivity;
20 import android.content.Intent;
21 import android.database.Cursor;
22 import android.os.Bundle;
23 import android.provider.Browser;
24 import android.view.View;
25 import android.widget.ListAdapter;
26 import android.widget.ListView;
27 import android.widget.SimpleCursorAdapter;
28
29 /**
30  * This class is only needed because I can't successfully send an ACTION_PICK intent to
31  * com.android.browser.BrowserBookmarksPage. It can go away if that starts working in the future.
32  *
33  * @author dswitkin@google.com (Daniel Switkin)
34  */
35 public final class BookmarkPickerActivity extends ListActivity {
36   private static final String[] BOOKMARK_PROJECTION = {
37       Browser.BookmarkColumns.TITLE,
38       Browser.BookmarkColumns.URL
39   };
40
41   private static final int[] TWO_LINE_VIEW_IDS = {
42       R.id.bookmark_title,
43       R.id.bookmark_url
44   };
45
46   private static final int TITLE_COLUMN = 0;
47   private static final int URL_COLUMN = 1;
48
49   // Without this selection, we'd get all the history entries too
50   private static final String BOOKMARK_SELECTION = "bookmark = 1";
51
52   private Cursor cursor;
53
54   @Override
55   protected void onCreate(Bundle icicle) {
56     super.onCreate(icicle);
57
58     cursor = getContentResolver().query(Browser.BOOKMARKS_URI, BOOKMARK_PROJECTION,
59         BOOKMARK_SELECTION, null, null);
60     startManagingCursor(cursor);
61
62     ListAdapter adapter = new SimpleCursorAdapter(this, R.layout.bookmark_picker_list_item,
63         cursor, BOOKMARK_PROJECTION, TWO_LINE_VIEW_IDS);
64     setListAdapter(adapter);
65   }
66
67   @Override
68   protected void onListItemClick(ListView l, View view, int position, long id) {
69     if (cursor.moveToPosition(position)) {
70       Intent intent = new Intent();
71       intent.putExtra(Browser.BookmarkColumns.TITLE, cursor.getString(TITLE_COLUMN));
72       intent.putExtra(Browser.BookmarkColumns.URL, cursor.getString(URL_COLUMN));
73       setResult(RESULT_OK, intent);
74     } else {
75       setResult(RESULT_CANCELED);
76     }
77     finish();
78   }
79 }