Issue
Is possible to give the background image of a button to another button, like we pass values betweeen variable, in Android Studio?
I want something like:
btn_1.setBackgroundResource = btn_2.setBackgroundResource
Solution
button1.setBackground(button2.getBackground());
Answered By - William Reed
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.