Hi,
Is it possible to change the released and the pressed color for at button.
I haved changes the button to have 0dip corners but now can I not see if the button is pressed.
I have used this code to remove the corners.
Mogens
Is it possible to change the released and the pressed color for at button.
I haved changes the button to have 0dip corners but now can I not see if the button is pressed.
I have used this code to remove the corners.
B4X:
Dim cdwColor As ColorDrawable
cdwColor.Initialize(Colors.Transparent , 0dip)
ButtonAnswer.TextColor = Colors.White
ButtonNext.textColor = Colors.White
ButtonAnswer.Background = cdwColor
ButtonNext.Background = cdwColor
Mogens