I'm probably making some silly mistake.

I have a custom view and use LayoutInflater to get the layout from an XML. Now , say I have a button called bt1. Normally , I would use findViewById , but that isn't working.

How do I get the button INSIDE that custom view?

LinearLayout lytContainer;
public obj(Context c){
    super(c);

    lytContainer = (LinearLayout) View.inflate(
            this.getContext(), R.layout.myLayout, null);
    TextView t = (TextView)findViewById(R.id.bt1);
    t.setText("cake");

}
link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You have to use:

    TextView t = (TextView)lytContainer.findViewById(R.id.bt1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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