GradientDrawable drawable=new GradientDrawable();
drawable.setShape(GradientDrawable.RECTANGLE);
drawable.setGradientType(GradientDrawable.RECTANGLE);
drawable.setCornerRadius(60);
drawable.setColor(getResources().getColor(android.R.color.darker_gray));
findViewById(R.id.button).setBackground(drawable);