I would like to draw a line right in the middle of a layout and use it as a separator of other items like TextView. Is there a good widget for this. I don't really want to use an image as it would be hard to match the other components to it. And I want it to be relatively positioned as well. Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I usually use this code to add horizontal line:
To add vertical separator set android:layout_width="1dp". |
|||||||||||||
|
|
Add this in your layout where you want the divider (modify the attributes to fit your need):
|
|||||
|
|
|||
|
|
To improve on the answers provided by Alex Kucherenko and Dan Dar3 I added this to my styles:
Then in my layouts is less code and simpler to read.
|
|||
|
|
use this code. It will help
|
|||
|
|
|
Add a horizontal linear layout like this.
|
|||
|
|
|
Runtime version:
|
|||
|
|
|
To complete Camille Sévigny answer you can additionally define your own line shape for example to custom the line color. Define an xml shape in drawable directory. line_horizontal.xml:
Use this line in your layout with the wished attributes:
|
|||
|
|

