I have two buttons in my xml layout as shown bellow.
I used an activity for this button click. I want to draw a line between these buttons as shown. Could someone please help me to draw the line between this by using code or XML..
I have two buttons in my xml layout as shown bellow.
I used an activity for this button click. I want to draw a line between these buttons as shown. Could someone please help me to draw the line between this by using code or XML..
You can use an custom view to draw the line such as LineView and override the
onDraw
.Then use the XML to achieve the layout you want.