ListView の最後の行、下線を表示させる

ListView の最後の行、下線が出ないと悩んだ。
 layout_height の指定を、wrap_content から、match_parent にすれば表示される。

    <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </ListView>