You can set the alpha property:
android:alpha="0.4"
via code :
yourView.setAlpha(0.5f);
only the background :
yourView.getBackground().setAlpha(120); // here the value is an integer not float
You can set the alpha property:
android:alpha="0.4"
via code :
yourView.setAlpha(0.5f);
only the background :
yourView.getBackground().setAlpha(120); // here the value is an integer not float