Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From that I've read you can assign a onClick handler to a button in two ways.

Using the android:onClick XML attribute where you just use the name of a public method with the signaturevoid name(View v) or by using the setOnClickListener method where you pass an object that implement the OnClickListener interface. The latter often requires an anonymous class which personally I don't like (personal taste) or defining an internal class that implements the OnClickListener.

By using the XML attribute you just need to define a method instead of a class so I was wondering if the same can be done via code and not in the XML layout.

share|improve this question
I read your problem and I think you are stuck at same place just like me. I came across a very good video which helped me very much in resolving my issue. Find the video on following link: youtube.com/watch?v=MtmHURWKCmg&feature=youtu.be I hope this will help you as well :) – user2166292 Mar 13 at 16:11

6 Answers

up vote 80 down vote accepted

No that is not possible via code. Android just implements the OnClickListener for you when you define the android:onClick="someMethod" attribute.

Those two code snippets are totally the same but just implemented in two different ways.

Code Implementation:

Button btn = (Button) findViewById(R.id.mybutton);

btn.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        myFancyMethod(v);
    }
});

// some more code

public void myFancyMethod(View v) {
    // does something very interesting
}

Above is a code implementation of an OnClickListener. And not the XML implementation.

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 -->

Now in the background Android does nothing else than the Java code calling your method on a click event.

Note that with the XML above, Android will look for the onClick method myFancyMethod() only in the current Activity. This is important to remember if you are using fragments, since even if you add the XML above using a fragment, Android will not look for the onClick method in the .java file of the fragment used to add the XML.

Another important thing I noticed. You mentioned you don't prefer anonymous methods. You meant to say you don't like anonymous classes.

share|improve this answer
I'm not a Java guru but yes, I meant anonymous class. Thanks for your reply. Very clear. – emitrax Nov 11 '10 at 13:54
11  
Note that the if you use the XML onclick, you have to put the onclick method (myFancyMethod()) in the current Activity. This is important if you are using fragments, since the programmatic way of setting onclick listeners will probably have the method handling clicks in a fragment's onCreateView()... where it would not be found if referred to from XML. – Peter Ajtai Nov 12 '11 at 0:46
@PeterAjtai Thanks for pointing that out. You can add that to my answer if you want. Just edit it in. – Octavian Damiean Nov 13 '11 at 15:55
does this method must be public ? – Mickey Tin Feb 5 at 10:29
Yes, the method has to be public. – Octavian Damiean Feb 5 at 10:32
show 2 more comments

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

share|improve this answer
9  
well well well... you saved many lives here – user517491 Feb 8 '12 at 11:37

Check if you forgot to put the method public!

share|improve this answer

Note that if you want to use the onClick XML feature, the corresponding method should have one parameter, whose type should match the XML object.

For example, a button will be linked to your method through its name string : android:onClick="MyFancyMethod" but the method declaration should show: ...MyFancyMethod(View v) {...

If you are trying to add this feature to a menu item, it will have the exact same syntax in the XML file but your method will be declared as: ...MyFancyMethod(MenuItem mi) {...

[I wanted to add that as a comment but I can't yet]

share|improve this answer

when i saw the top answer, made me realize my problem which was not putting the parameter (View v) on the fancy method

public void myFancyMethod(View v) {}

when trying to access it from the xml

android:onClick="myFancyMethod"/>

hope that helps someone

share|improve this answer

Supporting Ruivo's answer, yes you have to declare method as "public" to be able to use in Android's XML onclick - I am developing an app targeting from API Level 8 (minSdk...) to 16 (targetSdk...).

I was declaring my method as private and it caused error, just declaring it as public works great.

share|improve this answer
it appears that variables declared in the hosting Activity's class cannot be used in the scope of the declared callback; the Bundle Activity.mBundle will throw an IllegalStateException/NullPointerException if used in myFancyMethod(). – Quasaur Feb 27 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.