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.