Answers for "how to go from activity to fragment in android kotlin"

0

how to go from fragment to another fragment in kotlin

purple.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        Fragment fragment = new tasks();
        FragmentManager fragmentManager = getActivity().getSupportFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.replace(R.id.content_frame, fragment);
        fragmentTransaction.addToBackStack(null);
        fragmentTransaction.commit();
    }
});
Posted by: Guest on March-30-2021
0

how to move from fragment to activity in kotlin

btn.setOnClickListener {
            activity.let {
                val intent = Intent(it, GuardianProfile::class.java)
                startActivity(intent)
            }
        }
Posted by: Guest on May-24-2021
0

goto fragment from activity in kotlin intent

Intent notificationIntent = new Intent(context,MessagesFragment.class);
Posted by: Guest on March-24-2021
-2

how to start activity from fragment in kotlin

activity?.let{
    val intent = Intent (it, Main::class.java)
    it.startActivity(intent)
}
Posted by: Guest on February-15-2021

Code answers related to "how to go from activity to fragment in android kotlin"

Browse Popular Code Answers by Language