Answers for "open a fragment from another fragment kotlin"

2

open fragment from activity kotlin

if (savedInstanceState == null) {
            val f = DnsTestFragment()
            val t: FragmentTransaction = supportFragmentManager.beginTransaction()
            t.replace(binding.findastestFramelayout.id, f).commit()
        }
Posted by: Guest on August-17-2021
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

Code answers related to "open a fragment from another fragment kotlin"

Browse Popular Code Answers by Language