我在Microsoft Access中有一个名为tblPerson
的表,其中包含三列:
如何使用参数?
创建定义排序列的查询答案 0 :(得分:1)
您可以使用Choose function:
String[] countries = getResources().getStringArray(R.array.list_of_countries);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,countries);
actv.setAdapter(adapter);
其中OrderBy是从1到3的参数。
请注意,字段将首先按数字排序,而不是字符串。