recyclerview etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
recyclerview etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

10 Haziran 2017 Cumartesi

How to replace fragments on the onClick() of cardview?

How to replace fragments on the onClick() of cardview?

android - open a Fragment by clicking on a recyclerview item


After a lot of searching i have solved this issue

So simplified version, here's my  onBindViewHolder

MainActivity activity = (MainActivity) context;
activity.getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content, fragment)
.addToBackStack(null).commit();