as the title states:
I have a select query, which I\'m trying to \"order by\" a field which contains numbers, the thing is this numbers are really strings starting w
In ListView with cursor loader!
String projection= some string column; String selection= need to select; String sort="CAST ("+ YOUR_COLUMN_NAME + " AS INTEGER)"; CursorLoader(getActivity(), Table.CONTENT_URI, projection, selection, selectionArgs, sort);