Hello Everyone, On my main Activity, I have some menus. What I want to do is that, if a user click on the menu, he/she must navigate, or must be landed on a Fragment.
I know from Activity to Activity is just pass an Intent eg: Intent intent New Intent (Activity1.this. Activity2.class); And From Fragment to Activity eg: Intent intent New Intent (getContext() Activity2.class);
But how to Intent from an Activity to a Fragment? Or have to Navigate from An Activity to a Fragment? Is that possible ?
Does anyone have an idea how to do that ? thanks a lot.