Add the XML android:onClick="myFunction"to the RelativeLayoutfile and do the following function in the corresponding file Activity:
public void myFunction(View view)
{
...
}
I think you will have to add android:onClick="myFunction"for all the nested XML tags that are nested inside the main one RelativeLayout.
source
share