私はAndroidギャラリーを構築しています.ファイル名の降順で画像を表示したいと思います.
しかし、マネージドクエリの最後のフィールドに何を入力すればよいかわかりません:
String[] projection = {MediaStore.Images.Media._ID};
// Create the cursor pointing to the SDCard
cursor = managedQuery( MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
projection, // Which columns to return
MediaStore.Images.Media.DATA + " like ? ",
new String[] {"%LC/images%"},
MediaStore.Images.Media._ID + "dsc");// order here ?? help