I am trying to create a imageview in a fragment which will refer to the image view element which I have created in the xml for the fragment. However, the findViewById method only works if I extend the class with activity. Is there anyway of which I can use it in fragment as well?

public class TestClass extends Fragment {

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

             ImageView imageView = (ImageView)findViewById(R.id.my_image);

             return inflater.inflate(R.layout.testclassfragment, container, false);
    }
 }

The findViewById method has an error on it which states that the method is undefined.

link|improve this question

0% accept rate
feedback

4 Answers

Do a getView(). This will return the root view for the fragment. On this you can do a findViewById. i.e.

ImageView imageView = (ImageView) getView().findViewById(R.id.foo)

link|improve this answer
3  
Note: it's works only after onCreateView(). So, you can't use this in onCreate() – biovamp Jan 14 at 19:58
feedback

You need to inflate the Fragment's view and call findViewById() on the View it returns.

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

             View V = inflater.inflate(R.layout.testclassfragment, container, false);
             ImageView imageView = (ImageView)V.findViewById(R.id.my_image);

             return V;
    }
link|improve this answer
When you do V.findViewById(R.id.someid),surely that will only work for all the widgets that are in the inflated view. What if the imageView he is trying to inflate is outside the inflated view? – Raunak Oct 2 '11 at 0:33
Then the class that "owns" and inflated the imageView needs to provide public access to it. That is very bad practice though. Fragments should only have access to the UI elements present in their layout. – LeffelMania Oct 14 '11 at 6:18
This works perfectly, thanks a lot!!! – AdamM Feb 9 at 14:30
feedback

Get first the fragment view and then get from this view your ImageView.

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.testclassfragment, container, false);
    ImageView imageView = (ImageView) view.findViewById(R.id.my_image);
    return view;
}
link|improve this answer
So, does onCreate method is useful in a Fragment ? – Tsunaze Jun 28 '11 at 15:59
onCreateView creates and returns the view hierarchy associated with the fragment.onCreate is called to do initial creation of the fragment. Indeed, it depends on what you write in these methods. – xevincent Jun 28 '11 at 16:39
Okay, but how can i declare variable in the onCreate ? Because the View is inside the onCreateView method . – Tsunaze Jun 28 '11 at 18:47
feedback

You can override onViewCreated() which is called right after all views had been inflated. It's the right place to fill in your Fragment's member View variables. Here's an example:

class GalleryFragment extends Fragment {
    private Gallery gallery;

    (...)

    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {
        view.findViewById(R.id.gallery);
        gallery.setAdapter(adapter);
        super.onViewCreated(view, savedInstanceState);
    }
}
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.