I find there are space between the btnToEmail and btnToDelete, I have set android:layout_marginLeft="0dp".
How can remove space between buttons in RelativeLayout? Thanks!
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="3dip"
android:layout_marginTop="3dip"
android:background="#DCDCDC" >
<Button
android:id="@+id/btnToEmail"
style="@style/myTextAppearance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/export" />
<Button
android:id="@+id/btnToDelete"
style="@style/myTextAppearance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/btnToEmail"
android:layout_marginLeft="0dp"
android:text="@string/delete" />
<Button
android:id="@+id/btnSet"
style="@style/myTextAppearance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/btnToDelete"
android:layout_marginLeft="0dp"
android:text="@string/settings" />
<Button
android:id="@+id/btnAbout"
style="@style/myTextAppearance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/btnSet"
android:layout_marginLeft="0dp"
android:text="@string/about" />
<Button
android:id="@+id/btnExit"
style="@style/myTextAppearance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/exit" />
</RelativeLayout>