Issue
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?
Solution
Pass null as parameter should be enough:
frameLayout.setForeground(null);
Answered By - Blackbelt
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.