GradientDrawable drawable = new GradientDrawable(
Orientation.TOP_BOTTOM, new int[] { Color.YELLOW,Color.GREEN });
//getWindow().setBackgroundDrawable(drawable);
button.setBackground(drawable);
设置渐变背景色
最新推荐文章于 2024-06-06 13:47:25 发布
GradientDrawable drawable = new GradientDrawable(
Orientation.TOP_BOTTOM, new int[] { Color.YELLOW,Color.GREEN });
//getWindow().setBackgroundDrawable(drawable);
button.setBackground(drawable);