Vertical line using XML drawable Vertical line using XML drawable android android

Vertical line using XML drawable


Instead of a shape, you could try a View:

<View    android:layout_width="1dp"    android:layout_height="match_parent"    android:background="#FF0000FF" />

I have only used this for horizontal lines, but I would think it would work for vertical lines as well.

Use:

<View    android:layout_width="match_parent"    android:layout_height="1dp"    android:background="#FF0000FF" />

for a horizontal line.


You can nest your shape inside a rotate tag.

<rotate xmlns:android="http://schemas.android.com/apk/res/android"    android:fromDegrees="90"    android:toDegrees="90">    <shape         android:shape="line">        <stroke            android:width="1dp"            android:color="#ff00ff"            android:dashWidth="1dp"            android:dashGap="2dp" />    </shape></rotate>

However, the only problem is the layout params defined in your layout xml will be the dimensions used to draw the original shape. Meaning if you want your line to be 30dp tall, you need to define a layout_width of 30dp in your layout xml. But the final width will also be 30dp in that case, which is likely undesirable for most situations. This essentially means both width and height have to be the same value, the value of your desired length for the line. I couldn't figure out how to fix this.

This seems to be the "android way" solution, but unless there's some fix or workaround for the dimensions issue I mention then this likely won't work for most people. What we really need is an orientation attribute in <shape/> or <stroke/>.

You can also try referencing another drawable in the rotate tag's attributes, such as:

<rotate xmlns:android="http://schemas.android.com/apk/res/android"    android:fromDegrees="90"    android:toDegrees="90"    android:drawable="@drawable/horizontal_line" />

However I haven't tested this and expect it to have the same issues.

-- EDIT --

Oh, I actually figured out a fix. You can use a negative margin in your layout xml to get rid of the undesired extra space.Such as:

<ImageView    android:layout_width="35dp"    android:layout_height="35dp"    android:layout_marginLeft="-15dp"    android:layout_marginRight="-15dp"    android:src="@drawable/dashed_vertical_line" />


You can use the rotate attribute

 <item>    <rotate        android:fromDegrees="90"        android:toDegrees="90"        android:pivotX="50%"        android:pivotY="50%" >        <shape            android:shape="line"            android:top="1dip" >            <stroke                android:width="1dip"                 />        </shape>    </rotate></item>