Android onClick in XML vs. OnClickListener Android onClick in XML vs. OnClickListener xml xml

Android onClick in XML vs. OnClickListener


Difference Between OnClickListener vs OnClick:

  • OnClickListener is the interface you need to implement and can be setto a view in java code.
  • OnClickListener is what waits for someoneto actually click, onclick determines what happens when someoneclicks.
  • Lately android added a xml attribute to views called android:onclick,that can be used to handle clicks directly in the view's activitywithout need to implement any interface.
  • You could easily swap one listener implementation with another if you need to.
  • An OnClickListener enable you to separate the action/behavior of the click event from the View that triggers the event. While for simple cases this is not such a big deal, for complex event handling, this could mean better readability and maintainability of the code
  • Since OnClickListener is an interface, the class that implements it has flexibilities in determining the instance variables and methods that it needs in order to handle the event. Again, this is not a big deal in simple cases, but for complex cases, we don't want to necessary mix up the variables/methods that related to event handling with the code of the View that triggers the event.
  • The onClick with function binding in XML Layout is a binding between onClick and the function that it will call. The function have to have one argument (the View) in order for onClick to function.

Both function the same way, just that one gets set through java code and the other through xml code.

setOnClickListener Code Implementation:

Button btn = (Button) findViewById(R.id.mybutton);btn.setOnClickListener(new View.OnClickListener() {    @Override    public void onClick(View v) {    myFancyMethod(v);    }});// some more codepublic void myFancyMethod(View v) {    // does something very interesting}

XML Implementation:

<?xml version="1.0" encoding="utf-8"?><!-- layout elements --><Button android:id="@+id/mybutton"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:text="Click me!"    android:onClick="myFancyMethod" /><!-- even more layout elements -->

Performance:

Both are the same in performance. Xml is pre-parsed into binary code while compiling. so there is no over-head in Xml.

Limitation:

android:onClick is for API level 4 onwards, so if you're targeting < 1.6, then you can't use it.


I'm shocked nobody talked about this but be careful, although android:onClick XML seems to be a convenient way to handle click, the setOnClickListener implementation do something additional than adding the onClickListener. Indeed, it put the view property clickable to true.

While it's might not be a problem on most Android implementations, according to the phone constructor, button is always default to clickable = true but other constructors on some phone model might have a default clickable = false on non Button views.

So setting the XML is not enough, you have to think all the time to add android:clickable="true" on non button, and if you have a device where the default is clickable = true and you forget even once to put this XML attribute, you won't notice the problem at runtime but will get the feedback on the market when it will be in the hands of your customers !

In addition, we can never be sure about how proguard will obfuscate and rename XML attributes and class method, so not 100% safe that they will never have a bug one day.

So if you never want to have trouble and never think about it, it's better to use setOnClickListener or libraries like ButterKnife with annotation @OnClick(R.id.button)


Simply:

If you have android:onClick = "someMethod" in xml, it looks for the public void someMethod in your Activity class. OnClickListener is called right from your Activity and it is linked to some particular View. For example someButton.setOnClickListener and in the code below is said what has to be done when someButton is pressed.

Hope it helps :)