在 Android 上使用适配器的最佳方式是什么?我们可以将它用于几个自定义操作。通过使用适配器,我们将包含一些预先实现的方法。我应该什么时候使用这些方法?我们如何通过使用 Adapter 实现的方法来提高应用程序的性能?
public int getCount() {
// TODO Auto-generated method stub
return country.length;
}
public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
}