I have a fragment that I need to display on the screen. I want to be able to use InjectView to inject my UI elements. InjectView works fine on activities becaus
InjectView
Injection happens during onViewCreated
onViewCreated
@Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); commentEditText.setText("Some comment"); }