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?