You are using same color for background and text <RelativeLayout> android:background="#ffff00
<ListView> android:textColor="#ffff00" </ListView> <RelativeLayout> Try changing that say to "#000000" Cheers, Kacee On Jul 7, 9:33 am, mike <[email protected]> wrote: > hi ena, > > you have to create a custom adapter. > > private class ShowCategory extends BaseAdapter { > > //implement getView > > public View getView(int position, View convertView, ViewGroup parent) > { > > //in here define your textBoxes and others > ViewHolder holder = new ViewHolder(); > holder.text = (TextView) convertView.findViewById(R.id.catName); > > } > > class ViewHolder { > TextView text; > ImageView icon; > } > > > > }- Hide quoted text - > > - Show quoted text - -- 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

