Hello~
Now I am tring to create a ListView, which each row of the ListView contains a CheckBox view.
In ListAdapter.getView(), I return a CheckBox view.
The functionality is fine, but the height of each row of ListView is too big,
I tried to downsize the height. But I can not find a way to reduce the size of
CheckBox view (I think the height of the row of the ListView is actually dominated
by the size of CheckBox view inside). I tried to set the padding of the CheckBox view, but it doesn't work.
And I can not find a way to reduce the image size of the "checkable box" of CheckBox view
(do I need to write my own CheckBox view? Gosh....)
My UI requirement is to display exactly 4 rows a page,
if the ListView contains only TextView, I can adjust the TextView size to let each page contains 4 lines,
but if the ListView contains CheckBox view, I can not adjust it size to fit UI requirement.
Need your help, Thanks very much.



