I am having issue with the new Android Navigation Architecture component when I try to navigate from one Fragment to another, I get this weird error:
This happened to me, my issue was I was clicking a FAB on tab item fragment. I was trying to navigate from one of tab item fragment to another fragment.
But according to Ian Lake in this answer we have to use tablayout and viewpager, no navigation component support. Because of this, there is no navigation path from tablayout containing fragment to tab item fragment.
ex:
containing fragment -> tab layout fragment -> tab item fragment -> another fragment
Solution was to create a path from tab layout containing fragment to intended fragment
ex: path: container fragment -> another fragment
Disadvantage: