create an XML with your button design in the drawable folder such as ;
okButtonDesign.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="180"
android:endColor="#D8D8D8"
android:startColor="#F7D358" />
<corners android:radius="10px" />
<stroke
android:width="2px"
android:color="#000000" />
</shape>
Then in you activity layout, set the button background to the design;
<Button
android:id="@+id/btnloginok"
android:background="@drawable/okButtonDesign"
android:gravity="center"
android:text="@string/logonbuttontext"
android:textColor="#A4A4A4"android:textSize="@dimen/loginTextSize" />