There was an error while loading. Please reload this page.
1 parent fb1c98e commit 09c9583Copy full SHA for 09c9583
CursorLoaderDemo/src/com/example/cursorloaderdemo/MainActivity.java
@@ -16,20 +16,14 @@
16
17
public class MainActivity extends ListActivity implements LoaderCallbacks<Cursor>{
18
19
+private static final String TAG = "CursorLoaderDemo.MainActivity";
20
+
21
SimpleCursorAdapter mAdapter;
22
23
String mSearchType;
24
25
Integer year, month, day;
26
-/**
- * The serialization (saved instance state) Bundle key representing the
27
- * current dropdown position.
28
- */
29
-private static final String STATE_SELECTED_NAVIGATION_ITEM = "selected_navigation_item";
30
-
31
-private static final String TAG = "CursorLoaderDemo.MainActivity";
32
33
@Override
34
protected void onCreate(Bundle savedInstanceState) {
35
super.onCreate(savedInstanceState);
0 commit comments