Fragment Transaction - No View Found For Id 0x7f090022
I'm trying to replace a Fragment when I click on a item List, the thing is that I've got the same code for 5 differents fragments and it works on all, only on this Fragment says :
Solution 1:
Finally solved my problem doing this :
Bundle bundle = new Bundle();
bundle.putString("titol", item.title);
android.support.v4.app.FragmentManager fm = getActivity().getSupportFragmentManager();
Fragment fragment = new DetallProducteOffer();
fragment.setArguments(bundle);
fm.beginTransaction()
.replace(R.id.frame_container, fragment).commit();
Post a Comment for "Fragment Transaction - No View Found For Id 0x7f090022"