Android: Make specific (green) color in background image transparent

后端 未结 3 1556
一生所求
一生所求 2020-12-11 14:21

i am writing an app for Android.

in an xml file defining layout I have a TabHost with 6 Tabs, which all have the same big background image \"settingsdlg.gif\".

3条回答
  •  一个人的身影
    2020-12-11 15:00

    This code snippet worked for me:

    PorterDuffColorFilter porterDuffColorFilter = new PorterDuffColorFilter(
        getResources().getColor(R.color.your_color),
        PorterDuff.Mode.MULTIPLY
    );
    imgView.getDrawable().setColorFilter(porterDuffColorFilter);
    imgView.setBackgroundColor(Color.TRANSPARENT);
    

提交回复
热议问题