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

Pre-Honeycomb, each Activity was registered to handle button clicks via the onClick tag in a Layout's XML.

android:onClick="myClickMethod"

Within that method you can use view.getId() and a switch statement to do the button logic.

With the introduction of Honeycomb I'm breaking these Activities into Fragments which can be reused inside many different Activities. Most of the behavior of the buttons is Activity independent and I would like the code to reside inside the Fragments file without using the old (pre 1.6) method of registering the OnClickListener for each button.

 final Button button = (Button) findViewById(R.id.button_id);
     button.setOnClickListener(new View.OnClickListener() {
         public void onClick(View v) {
             // Perform action on click
         }
     });

The problem is that when my layout's are inflated it is still the hosting Activity that is receiving the button clicks, not the individual Fragments. Is there a good approach to either

  • Register the fragment to receive the button clicks?
  • Pass the click events from the Activity to the fragment they belong to?
share|improve this question
1  
Can't you handle registering listeners within the onCreate of the fragment? – Jodes May 22 '11 at 22:24
5  
@jodes Yes, but I don't want to have to use setOnClickListener and findViewById for each button, that's why onClick was added, to make things simpler. – smith324 May 22 '11 at 22:35

5 Answers

up vote 36 down vote accepted

Could you not just do this:

Activity:

Fragment someFragment;    

...onCreate etc instantiating your fragments

public void myClickMethod(View v){
    someFragment.myClickMethod(v);
}

Fragment:

 public void myClickMethod(View v){
    switch(v.getid){
       // Just like you were doing
    }
 }    
share|improve this answer
13  
That's what I'm doing now essentially but it is a lot messier when you have multiple fragments that each need to receive click events. I'm just aggravated with fragments in general because paradigms have dissolved around them. – smith324 Jun 9 '11 at 0:47
It doesn't get much messier, as you just pass it the click even to all your fragments and only the one with the ID will react, but yeah they have thrown a fly in the oitment – Blundell Jun 9 '11 at 7:37
Lovely! This isn't messy at all, even makes it easier for other people to read the code (as they don't have to guess where the actual call ends up). :-) – ninetwozero Jan 31 '12 at 18:50
I think, you should name the one in the fragment something like myClickMethod_actual or something like that. Since there might be an ambiguity on which method is being called at a later point of time. I know that at this point of time the method in the activity is just a stub but you may add something to it later. – DheeB Feb 2 at 21:05
9  
I'm running into the same issue, and even though I appreciate your response, this is not clean code from a software engineering point of view. This code results in the activity being tightly coupled with the fragment. You should be able to re-use the same fragment in multiple activities without the activities knowing the implementation details of the fragments. – Ameen Feb 8 at 2:20

I prefer using the following solution for handling onClick events. This works for Activity and Fragments as well.

public class StartFragment extends Fragment implements OnClickListener{

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View v = inflater.inflate(R.layout.fragment_start, container, false);

        Button b = (Button) v.findViewById(R.id.StartButton);
        b.setOnClickListener(this);
        return v;
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.StartButton:

            ...

            break;
        }
    }
}
share|improve this answer
1  
This is a much better solution than the accepted answer. – Nathan Osman Mar 16 at 5:17
1  
I'd do this instead of accepted answer, but I use android:onClick for buttons placed in rows of listview and then I just do getPositionForView(v) to get the position. I don't know how would I use this to achieve it. – prostynick Mar 20 at 11:39
2  
In onCreateView, I loop through all the child items of the ViewGroup v and set the onclicklistener for all the Button instances that I find. It's much better than manually setting the listener for all buttons. – Siidheesh Mar 21 at 15:24

The problem I think is that the view is still the activity, not the fragment. The fragments doesn't have any independent view of its own and is attached to the parent activities view. Thats why the event ends up in the Activity, not the fragment. Its unfortunate, but I think you will need some code to make this work.

What I've been doing during conversions is simply adding a click listener that calls the old event handler.

for instance:

final Button loginButton = (Button) view.findViewById(R.id.loginButton);
    loginButton.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(final View v) {
            onLoginClicked(v);
        }
    });
share|improve this answer
Thanks - I used this with one slight modification in that I'm passing the fragment view (ie. the result of inflater.inflate(R.layout.my_fragment_xml_resource)) to onLoginClicked() so that it can access the fragments sub-views, such as an EditText, via view.findViewById() (If I simply pass through the activity view, calls to view.findViewById(R.id.myfragmentwidget_id) returns null). – Michael Nelson Jan 1 at 10:20

I would rather go for the click handling in code than using the onClick attribute in xml when working with fragments. This becomes even easier when migrating your activities to fragments. You can just call the click handler(previously set to android:onClick in xml) directly from each case block.

findViewById(R.id.button_login).setOnClickListener(clickListener);
...

OnClickListener clickListener = new OnClickListener() {
    @Override
    public void onClick(final View v) {
        switch(v.getId()) {
           case R.id.button_login:
              // which is supposed to be called automatically
              // in your activity, which has now changed to a fragment.
              onLoginClick(v);   
              break;

           case R.id.button_logout:
              ...
        }
    }
}

When it comes to handling clicks in fragments, this looks simpler to me than android:onClick.

share|improve this answer

You can define a callback as an attribute of your xml layout. The article below will show you how to do it for a custom widget.

http://kevindion.com/2011/01/custom-xml-attributes-for-android-widgets/

credit goes to Kevin Dion :)

I'm investigating whether i can add styleable attributes to the base Fragment class.

The basic idea is to have the same functionality that View implements when dealing with the onClick callback.

I will post an update after I figure out how to do it for the existing Fragment class.

share|improve this answer

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.