how do i add line seprater in betwen edittext and button below is my code help me plz i follow this tutorial How to add (vertical) divider to a horizontal LinearLayout? is not help me pl i just want to add line seprate rin bedtween edittext and button
<RelativeLayout
android:layout_height="wrap_content"
android:background="#a8a8a8"
android:layout_width="fill_parent">
<EditText
android:id="@+id/EditText01"
android:hint="Enter some text..."
android:layout_alignParentLeft="true"
android:layout_width="fill_parent"
android:background="#a8a8a8"
android:paddingTop="15dp"
android:hint="SEARCH SCHOOL BY NAME"
android:layout_toLeftOf="@+id/Button01"
android:layout_height="wrap_content">
</EditText>
<Button
android:id="@+id/Button01"
android:text="Press Here!"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_height="wrap_content"></Button>
</RelativeLayout>