Can you provide an example? I'm trying to declare OnClicks in my Fragments 
however I keep coming up against Force close errors.

On Thursday, October 25, 2012 11:55:53 PM UTC+1, Max Dell'Orco wrote:
>
> This doesnt work at all.
> You should create a method in the FragmentActivity that recall the method 
> inside your Fragment.
> Declaring a Fragment ref inside your FragmentActivity.
>
> Il giorno giovedì 13 ottobre 2011 15:28:18 UTC+2, Streets Of Boston ha 
> scritto:
>>
>> In your onCreateView callback of your fragment, you could do something 
>> like this:
>>
>> *Button myButton = (Button)view.findViewByid(R.id.mybutton);*
>> *myButton.setOnClickListener(new OnClickListener() {*
>> *  public void onClick(View view) {*
>> *    // put some code here that handles the click event.*
>> *    ...*
>> *  }*
>> *});*
>>
>> Just like you could do in an Activity. Registering onClickListeners in 
>> Fragments is no different.
>>
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to