Ich habe in vielen Beispielen Abfragen in Android für Datenbanken etc. gefunden.
Manchmal wird das so abgefragt
Cursor := MainActivity.getContentResolver.query(Uri, l_projection, Selection, SelectionArgs, SortOrder);
manchmal so
Cursor := SharedActivity.getContentResolver.query(Uri, l_projection, Selection, SelectionArgs, SortOrder);
manchmal so
fContentResolver.query(StrToJURI('content://com.android.calendar/calendars'), wValues, wfilter, wArgs, nil);
manchmal so
TAndroidHelper.Activity.getContentResolver.query
Teilweise auch noch anders.
Was ist hier der richtige Weg?