Back to project page AerisAndroidLibrary.
The source code is released under:
Apache License
If you think the Android project AerisAndroidLibrary listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.db; /* w w w. j a va 2 s . c o m*/ import android.content.Context; import android.database.Cursor; public class MyLocLoader extends SimpleCursorLoader { public MyLocLoader(Context context) { super(context); } @Override public Cursor loadInBackground() { MyPlacesDb db = new MyPlacesDb(getContext()); Cursor cursor = db.getMyPlaceCursor(); return cursor; } }