Custom Row at ListView with SimpleAdapter
i am using a ListView with a SimpleAdapter. Everything is working fine. My 开发者_JAVA技巧only problem is that there is border at the top/bottom of each Entry which is represented by a TextView. Does someone know how I can hide that border?
Best Regards Manuel
Just add the following to your listview layout:
android:cacheColorHint="#00000000"
You can get more info Here.
精彩评论