Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
Looks like there was one solution here : – Androider Feb 19 '11 at 9:49
3  

8 Answers

I usually use this code to add horizontal line:

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="@android:color/darker_gray"/>

To add vertical separator set android:layout_width="1dp".

share|improve this answer
this worked for me :) – GeekedOut Apr 28 '12 at 14:40
Works for me too. Can also add android:layout_marginTop="2dp" (etc) to add spaces in top and bottom. – Duc May 7 '12 at 3:43
Worked for me like charm, thanks.. – alchemist Jun 29 '12 at 5:07
1  
This is great for a simple horizontal line. But if you want the color fading at the ends, use one of the other methods here. – Scott Biggs Aug 24 '12 at 4:10
Works nicely as a simple separator. – r1k0 Sep 13 '12 at 11:08
show 3 more comments

Add this in your layout where you want the divider (modify the attributes to fit your need):

<ImageView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@android:drawable/divider_horizontal_dark"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:paddingBottom="2dp"
    android:paddingTop="2dp" />
share|improve this answer
1  
did not work for me .. – Ahmed Apr 14 at 21:31
<TextView
    android:id="@+id/line"
    style="?android:attr/listSeparatorTextViewStyle"
    android:paddingTop="5dip"
    android:gravity="center_horizontal"
    android:layout_below="@+id/connect_help"
    android:layout_width="match_parent"
    android:layout_height="1dp" />
share|improve this answer
I would defend this method more that others on the account that it uses an already existing style, but it might not please everybody. – Solenoid Sep 7 '12 at 19:40

To improve on the answers provided by Alex Kucherenko and Dan Dar3

I added this to my styles:

<style name="Divider">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">1dp</item>
    <item name="android:background">?android:attr/listDivider</item>
</style>

Then in my layouts is less code and simpler to read.

<View style="@style/Divider"/>
share|improve this answer
This is great and IMHO the best solution! That way you don't have to manually set the color, so consistency is easier when you have more than one theme (I use Theme.Sherlock and Theme.Sherlock.Light). – Kopfgeldjaeger Mar 17 at 20:58

use this code. It will help

    <LinearLayout
    android:layout_width="0dip"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:divider="?android:dividerHorizontal"
    android:gravity="center"
    android:orientation="vertical"
    android:showDividers="middle" >
share|improve this answer

Add a horizontal linear layout like this.

<LinearLayout
    android:id="@+id/LL_Seperator"
    android:layout_width="1dp"
    android:layout_height="fill_parent"
    android:layout_marginRight="5dp"
    android:layout_toLeftOf="@+id/imgBut_Settings"
    android:background="#37000000"
    android:orientation="horizontal" >
</LinearLayout>
share|improve this answer

Runtime version:

    View dividerView = new View(getContext());
    LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
            ViewGroup.LayoutParams.FILL_PARENT, UIUtils.dpToPix(getContext(), 1));
    dividerView.setLayoutParams(lp);

    TypedArray array = getContext().getTheme().obtainStyledAttributes(new int[] {android.R.attr.listDivider});
    Drawable draw = array.getDrawable(0);       
    array.recycle();

    dividerView.setBackgroundDrawable(draw);
    mParentLayout.addView(dividerView);
share|improve this answer

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:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:shape="line">
    <stroke android:width="2dp" android:color="@android:color/holo_blue_dark" />
    <size android:width="5dp" />
</shape>

Use this line in your layout with the wished attributes:

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="2dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="2dp"
        android:src="@drawable/line_horizontal" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.