I want to make Buttons with different transparency levels in android.I have used \"@android:color/transparent\". But it makes the button 100% transparent. I need a
\"@android:color/transparent\"
You can set a background for the button,then achieve the transparency by adjusting the alpha attribute of the button,
android:alpha="0.7"
Makes the opacity 70 percent.