En este post voy a explicar cómo pasar de un Fragmento (Fragment) de Android a otro. Algo así como cuando cambiamos de actividad usando un Intent, pero ahora utilizando fragmentos.

Resumiendo, vamos a ver cómo hacer la transición de un fragmento a otro en Java para Android usando FragmentManager y FragmentTransaction.

Ir de un fragmento a otro con Android

Vamos rápido. Las clases que se necesitan son Fragment, FragmentManager y FragmentTransaction así que hay que importarlas:

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;

Recuerda tener presente el nombre de la clase de tu fragmento. En este caso se llama GastosFragmentNuevo.

Después, en el lugar en donde vas hacer la transacción pon el siguiente código:

// Crear fragmento de tu clase
Fragment fragment = new GastosFragmentNuevo();
// Obtener el administrador de fragmentos a través de la actividad
FragmentManager fragmentManager = getActivity().getSupportFragmentManager();
// Definir una transacción
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
// Remplazar el contenido principal por el fragmento
fragmentTransaction.replace(R.id.content_principal, fragment);
fragmentTransaction.addToBackStack(null);
// Cambiar
fragmentTransaction.commit();

Presta atención al método replace, ahí debes poner el identificador del layout de tu actividad principal. En mi caso es R.id.content_principal, en el tuyo será otro.

Con eso será suficiente para ir de un fragmento a otro en Android.

Aprende más sobre Android en este enlace.


I am available for hiring if you need help! I can help you with your project or homework feel free to contact me.
If you liked the post, show your appreciation by sharing it, or making a donation

parzibyte

Freelancer programmer ready to work with you. Web, mobile and desktop applications. PHP, Java, Go, Python, JavaScript, Kotlin and more :) https://parzibyte.me/

Entradas recientes

Receipt designer for thermal printers – Free and open source

In the last months I have been working on a ticket designer to print on…

11 months hace

JavaScript: store and read files with the Origin Private File System

In this post you will learn how to use the Origin Private File System with…

1 year hace

JavaScript: download file with fetch

In this post you will learn how to download a file in the background using…

1 year hace

SQLite3 with vanilla JavaScript and OPFS – Hello world

In this post I will show you how to use SQLite3 directly in the web…

1 year hace

Python Thermal Printing: A Comprehensive Guide for Printing on Thermal Printers

In this tutorial, we'll explore how to effortlessly print receipts, invoices, and tickets on a…

1 year hace

Image printing on Thermal printer

When printing receipts on thermal printers (ESC POS) sometimes it is needed to print images…

1 year hace

Esta web usa cookies.