I am using a list view in Android 1.5 to show a list of images and text next to the image. I am trying to vertically center the text but the text is at the top of the row i
Was stuck on a similar issue for a while, but found this from CommonsWare:
"When you inflate the layout, use inflate(R.layout.whatever, parent, false), where parent is the ListView."
inflate(R.layout.whatever, parent, false)
Works but only when you set the height of the row to a specific value (ie you can't use wrap_content).