SimpleCursorAdapter 是设计形式?名字叫什么

SimpleCursorAdapter 是设计模式?名字叫什么?String uriString “content://contacts/people/”Cursor my

SimpleCursorAdapter 是设计模式?名字叫什么?
String uriString = “content://contacts/people/”;
Cursor myCursor = managedQuery(Uri.parse(uriString), null, null, null, null);
String[] fromColumns = new String[] {People.NUMBER, People.NAME};
int[] toLayoutIDs = new int[] { R.id.nameTextView, R.id.numberTextView};
SimpleCursorAdapter myAdapter;
myAdapter = new SimpleCursorAdapter(this,R.layout.simplecursorlayout,myCursor,fromColumns,toLayoutIDs);
myListView.setAdapter(myAdapter);

[解决办法]
就叫Adapter
[解决办法]
叫适配器模式
[解决办法]
对,适配器模式