I'm using the following command to draw a border on a frameLayout:
frameLayout.setForeground(getResources().getDrawable(R.drawable.blue_border));
Now I want to remove this foreground drawable.. How can I do this?
Pass null as parameter should be enough:
frameLayout.setForeground(null);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With