Android layout equivalent HTML HR Tag

Just found how to create underline same as HTML “<hr/>” tag within android layout xml. 😀

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="#ffffff"
    />

Reference: http://stackoverflow.com/a/7158158/1936697

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.