Estou tentando criar um ImageView em um fragmento que se refere ao elemento ImageView que eu criei no XML para o fragmento. No entanto, o findViewById
método só funciona se eu estender uma classe Activity. Existe alguma maneira de que eu possa usá-lo também no Fragment?
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);
}
}
O findViewById
método possui um erro que indica que o método é indefinido.