Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Self-Destructing Message Android App Using Fragments for Tabs Understanding the Rest of the Pieces

David Bouchare
David Bouchare
9,224 Points

Button in Fragment class (mDeleteButton)

Hi everyone,

In this code challenge, I am not sure where I should write the code for mDeleteButton.

I wrote it in the onCreateView method, see below:

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

        View rootView = inflater.inflate(R.layout.fragment_photo, container, false);
        mDeleteButton = (Button)findViewById(R.id.deleteButton);
        return rootView;
    }

However, the error is: For fragments, we must call the 'findViewById()' method from the 'rootView' that is created.

Any ideas? Thanks in advance!

David

2 Answers

Enrique Ramirez
Enrique Ramirez
15,824 Points

When referencing a view from an XML file from a fragment (like in this case mDeleteButton) you must tell in which view is contained (rootView), so the whole thing should look like this:

mDeleteButton = (Button) rootView.findViewById(R.id.deleteButton);

That should make it.

David Bouchare
David Bouchare
9,224 Points

Thanks Enrique, that solved the issue. Much appreciated!