I'm making an activity to configure my app, and I have to divide the sections of my configuration window with a line. I used this: divider_horizontal_bright
, from this example:
http://android.cryx.li/doku.php?id=know:settings:start
However it doesn't work! When I test on my android phone, it doesn't show a horizontal line. Why?
I am using Android 2.1
There are many ways we can add a Horizontal line/rule in an Android Layout. xml file. One of the ways is to create a table row with background color and a height of say 1-2dp.
This example demonstrates how do I draw a line in android. Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main. xml.
quadTo(mX, mY, (x + mX)/2, (y + mY)/2); You will be able to draw straight lines.
That line historically represents the margin of A4 paper, which is useful only if you need to print the code. Old school says that you should keep your code inside that margin, to guarantee much portability.
Try this link.... horizontal rule
That should do the trick.
The code below is xml.
<View android:layout_width="fill_parent" android:layout_height="2dip" android:background="#FF00FF00" />
If this didn't work:
<ImageView android:layout_gravity="center_horizontal" android:paddingTop="10px" android:paddingBottom="5px" android:layout_height="wrap_content" android:layout_width="fill_parent" android:src="@android:drawable/divider_horizontal_bright" />
Try this raw View:
<View android:layout_width="fill_parent" android:layout_height="1dip" android:background="#000000" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With