Button with getBackground().setAlpha on version 5 - lollipop isn't working correctly
问题 I have this code and works for every version since API 14 but on Android 5.0 (Lollipop) isn't working correctly. Below is the way how I want the buttons appear. click of button1 buttonArrivals.getBackground().setAlpha(180); buttonDepartures.getBackground().setAlpha(255); click of button2 buttonArrivals.getBackground().setAlpha(255); buttonDepartures.getBackground().setAlpha(180); On Lollipop version the buttons appear with the same Alpha but I never set the same alpha. I just use the code