Browse Source

InformationListAdapter: Use ArrayAdapter.getItem.

master
Reece H. Dunn 12 years ago
parent
commit
596aa025cd
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      android/src/com/reecedunn/espeak/InformationListAdapter.java

+ 1
- 3
android/src/com/reecedunn/espeak/InformationListAdapter.java View File

@@ -28,7 +28,6 @@ import android.widget.TextView;

public class InformationListAdapter extends ArrayAdapter<Pair<String,String>>
{
private final List<Pair<String,String>> information;
private final LayoutInflater inflater;

static class ViewHolder
@@ -41,7 +40,6 @@ public class InformationListAdapter extends ArrayAdapter<Pair<String,String>>
{
super(context, R.layout.information_view, information);
this.inflater = context.getLayoutInflater();
this.information = information;
}

@Override
@@ -61,7 +59,7 @@ public class InformationListAdapter extends ArrayAdapter<Pair<String,String>>
holder = (ViewHolder)convertView.getTag();
}

Pair<String,String> info = information.get(position);
Pair<String,String> info = getItem(position);
holder.title.setText(info.first);
holder.summary.setText(info.second);
return convertView;

Loading…
Cancel
Save