> i populate ListView Using ArrayAdapter,

You could create your own Adapter (subclassing ArrayAdapter) and
override getView().  Call through to the superclasses getView() method
& then configure the View you get back however you want. e.g.

public class MyArrayAdapter extends ArrayAdapter {
....
 public View getView(int position, View convertView, ViewGroup parent)
{
     View v = super.getView(position, convertView, parent);
     TextView tv = (TextView)v.findViewById(android.R.id.text);
     tv.setTextColor(.....);
 }
...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to