RSS

Search Engine

Saturday, May 22, 2010

Fancy ListViews, Part One

The classic Android ListView is a plain list of text — solid but uninspiring. This is the first in a series of posts where we will see how to create a ListView with a bit more pizazz. Today, in particular, we will see two techniques for creating a ListView whose rows contain icons, in addition to text.

If you want rows to have a different look than the stock rows, one way to accomplish this is to supply your own layout XML to be used for each row, telling Android to use your layout rather than one of the built-in ones. This gives you complete control over what goes in the row and how it is laid out.

For example, suppose you want a ListView whose entries are made up of an icon, followed by some text. You could construct a layout for the row that looks like this:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="horizontal"
  5. >
  6. <ImageView
  7. android:id="@+id/icon"
  8. android:layout_width="22px"
  9. android:paddingLeft="2px"
  10. android:paddingRight="2px"
  11. android:paddingTop="2px"
  12. android:layout_height="wrap_content"
  13. android:src="@drawable/ok"
  14. />
  15. <TextView
  16. android:id="@+id/label"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:textSize="44sp"
  20. />
  21. LinearLayout>

This layout uses a LinearLayout to set up a row, with the icon on the left and the text (in a nice big font) on the right.

By default, though, Android has no idea that you want to use this layout with your ListView. To make the connection, you need to supply your Adapter with the resource ID of your custom layout:

  1. public class StaticDemo extends ListActivity {
  2. TextView selection;
  3. String[] items={"lorem", "ipsum", "dolor", "sit", "amet",
  4. "consectetuer", "adipiscing", "elit", "morbi", "vel",
  5. "ligula", "vitae", "arcu", "aliquet", "mollis",
  6. "etiam", "vel", "erat", "placerat", "ante",
  7. "porttitor", "sodales", "pellentesque", "augue",
  8. "purus"};
  9. @Override
  10. public void onCreate(Bundle icicle) {
  11. super.onCreate(icicle);
  12. setContentView(R.layout.main);
  13. setListAdapter(new ArrayAdapter(this,
  14. R.layout.row, R.id.label,
  15. items));
  16. selection=(TextView)findViewById(R.id.selection);
  17. }
  18. public void onListItemClick(ListView parent, View v,int position, long id) {
  19. selection.setText(items[position]);
  20. }
  21. }

This example, derived from one of the ones in my book, displays a list of random words, and puts the currently-selected word in a TextView.

The key in this example is that you have told ArrayAdapter that you want to use your custom layout (R.layout.row) and that the TextView where the word should go is known as R.id.label within that custom layout.

The result is a ListView with icons down the left side. In particular, all the icons are the same.

This technique — supplying an alternate layout to use for rows — handles simple cases very nicely. However, it falls down when you have more complicated scenarios for your rows, such as:

  • Not every row uses the same layout (e.g., some have one line of text, others have two)

  • You need to configure the widgets in the rows (e.g., different icons for different cases)

In those cases, the better option is to create your own subclass of your desired Adapter, override getView(), and construct your rows yourself. The getView() method is responsible for returning a View, representing the row for the supplied position in the adapter data.

For example, let’s rework the above code to use getView(), so we can have different icons for different rows — in this case, one icon for short words and one for long words:

  1. public class DynamicDemo extends ListActivity {
  2. TextView selection;
  3. String[] items={"lorem", "ipsum", "dolor", "sit", "amet",
  4. "consectetuer", "adipiscing", "elit", "morbi", "vel",
  5. "ligula", "vitae", "arcu", "aliquet", "mollis",
  6. "etiam", "vel", "erat", "placerat", "ante",
  7. "porttitor", "sodales", "pellentesque", "augue",
  8. "purus"};
  9. @Override
  10. public void onCreate(Bundle icicle) {
  11. super.onCreate(icicle);
  12. setContentView(R.layout.main);
  13. setListAdapter(new IconicAdapter(this));
  14. selection=(TextView)findViewById(R.id.selection);
  15. }
  16. public void onListItemClick(ListView parent, View v, int position, long id) {
  17. selection.setText(items[position]);
  18. }
  19. class IconicAdapter extends ArrayAdapter {
  20. Activity context;
  21. IconicAdapter(Activity context) {
  22. super(context, R.layout.row, items);
  23. this.context=context;
  24. }
  25. public View getView(int position, View convertView, ViewGroup parent) {
  26. ViewInflate inflater=context.getViewInflate();
  27. View row=inflater.inflate(R.layout.row, null, null);
  28. TextView label=(TextView)row.findViewById(R.id.label);
  29. label.setText(items[position]);
  30. if (items[position].length()>4) {
  31. ImageView icon=(ImageView)row.findViewById(R.id.icon);
  32. icon.setImageResource(R.drawable.delete);
  33. }
  34. return(row);
  35. }
  36. }
  37. }

In our getView() implementation, we first get our hands on a ViewInflate object, as described in the previous Building ‘Droids post, so we can use it to “inflate” our row layout XML and give us a View representing that row.

Then, we tailor that View to match our needs:

  • We fill in the text label into our label widget, using the word at the supplied position

  • We see if the word is longer than four characters and, if so, we find our ImageView icon widget and replace the stock resource with a different one

Now, we have a ListView with different icons based upon context of that specific entry in the list. Obviously, this was a fairly contrived example, but you can see where this technique could be used to customize rows based on any sort of criteria, such as other columns in a returned Cursor.

Next time, we’ll take a closer look at the convertView parameter to our getView() method and see how we can make use of it to more efficiently render our list.

0 comments:

Post a Comment