[android-developers] ListView Divider not showing when color changed

2011-05-15 Thread luiX_
Hi, I have this layout for a ListView: ListView android:id=@id/android:list android:layout_width=fill_parent android:layout_height=wrap_content android:layout_below=@id/free_shopping_title android:layout_above=@id/free_shopping_total_price /ListView and the divider shows fine at

Re: [android-developers] ListView Divider not showing when color changed

2011-05-15 Thread Nasif Noorudeen
use your own list view don't use built in inside android change ListView android:id=@id/android:list// android:id=@+id/som_id android:layout_width=fill_parent android:layout_height=wrap_content android:layout_below=@id/free_shopping_title

Re: [android-developers] ListView Divider not showing when color changed

2011-05-15 Thread luiX_
If that's needed, this should be a bug in the framework, isn't it? I'm asking in order to open a bug report. 2011/5/15 Nasif Noorudeen nas...@gmail.com use your own list view don't use built in inside android change ListView android:id=@id/android:list//

Re: [android-developers] ListView Divider not showing when color changed

2011-05-15 Thread Kostya Vasilyev
15.05.2011 22:28, luiX_ пишет: ListView android:id=@id/android:list // android:id=@+id/som_id AFAIK, @id/android:list is not valid ID syntax. It's either: @id/your_application_package_id @+id/your_application_package_id or @android:id/predefined_android_id For ListActivity, that should