Android設定圓角

如題
如果Button沒有要做到按下去有不同效果,懶得特地製作drawable xml給button吃,
那可以考慮如下做法,直接寫程式透過GradientDrawable達成

// 設定按鈕drawable

GradientDrawable shape =  new GradientDrawable();

shape.setCornerRadius(18);
  //圓角
shape.setColor(Color.parseColor("#FF7419"));  //顏色

Button sellButton = this.getActivity().findViewById(R.id.myButton);
sellButton.setBackground(shape);

沒有留言: