Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this method to populate GridView

private void populateGrid()
{

    GridView gv= (GridView)findViewById(R.id.mygrid);

    Cursor c = getData():
    startManagingCursor(c);

    String[] cols = new String[] { adap.ONE, adap.TWO, adap.THREE};
    int[]   views = new int[] { R.id.txt_1, R.id.txt_2, R.id.txt_3};

    // Now create an array adapter and set it to display using our row
    SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, 
            R.layout.row, c, cols, views);

    Log.w("NumRows",adapter.getCount() + "");

    gv.setAdapter(adapter);

}

Unfortunately the method

startManagingCursor(c);

And this constructor

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, 
                R.layout.listviewtemp, c, cols, views);

have been deprecated since API level 11.

How should I rewrite this simple method avoiding the deprecation?

share|improve this question
to which API your coding – Lochana Ragupathy Dec 16 '12 at 4:26
@LochanaRagupathy API Level 17, however these are deprecated since API level 11 – AndreaF Dec 16 '12 at 4:28
1  
then try CursorLoader developer.android.com/reference/android/content/… – Lochana Ragupathy Dec 16 '12 at 5:25
could you give me a sample? thanks – AndreaF Dec 16 '12 at 5:35

1 Answer

https://gist.github.com/1217628 try this and before that just read the docs of CursorLoader

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.