Я создаю кнопку программно. Он округлен и имеет градиентный фон, отлично работает и выглядит красиво, но я не мог сделать две вещи, которые я хотел:
- Установите 1 пиксельный ход с заданным цветом. Я попробовал getPaint(). SetStroke(), но не мог понять, как установить цвет штриха. Как мне это сделать?
- Совместите градиент в нижней части кнопки, независимо от высоты. Возможно ли это?
Для справки, это код, который я использую:
Button btn = new Button(context);
btn.setPadding(7, 3, 7, 5);
btn.setTextColor(text_color);
// Create a gradient for the button. Height is hardcoded to 30 (I don't know the height beforehand).
// I wish I could set the gradient aligned to the bottom of the button.
final Shader shader = new LinearGradient(0, 0, 0, 30,
new int[] { color_1, color_2 },
null, Shader.TileMode.MIRROR);
float[] roundedCorner = new float[] { 5, 5, 5, 5, 5, 5, 5, 5 }
ShapeDrawable normal = new ShapeDrawable(new RoundRectShape(roundedCorner, null, null));
normal.getPaint().setShader(shader);
normal.setPadding(7, 3, 7, 5);
// Create a state list (I suppressed settings for pressed).
StateListDrawable state_list = new StateListDrawable();
state_list.addState(new int[] { }, normal);
btn.setBackgroundDrawable(state_list);