how to remove background resource of Button?

android, android-button

Solution

try assigning `background:@null` in xml file for programetically try `layout.setBackgroundResource(0);`

Problem

How to remove button background resource i refered this, But my need is to remove button background and that should change background as per deviceDefault theme. Means just removing the resource added last time, not assigning new Resource. Can anybody help to solve this prob ? Thank You

Original source