I am creating a layout with a ListView and at the very top of the list there is this weird black line that I can\'t seem to figure out how to get rid of! It\'s par
ListView
It is probably coming from the divider of ListView. Check out and play with setting
setDividerHeight(0)
as well as check header/footer dividers are off or use
setFooterDividersEnabled(false)
You can also set these in xml of course. e.g.
android:dividerHeight="0"