“onde usar o findViewById em fragmento” Respostas de código

Use FindViewById em fragmento

//java,how use findViewById in fragments,Android studio,2021/09/23

TextView textView;
textView=getView().findViewById(R.id.textView);

//use getView(). with it
RIPCode

onde usar o findViewById em fragmento

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    ImageView imageView = (ImageView) getView().findViewById(R.id.foo);
    // or  (ImageView) view.findViewById(R.id.foo);
Grotesque Goose

Respostas semelhantes a “onde usar o findViewById em fragmento”

Perguntas semelhantes a “onde usar o findViewById em fragmento”

Mais respostas relacionadas para “onde usar o findViewById em fragmento” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código