リストビューに枠線表示

border.xmlをres/drawableに作成

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <stroke android:width="1px" android:color="#000000" />
</shape>

リストビューのbackgroundに設定

    <ListView
        android:background="@drawable/border"
    />