Estoy tratando de aprender Fragmentos en Android y de varios ejemplos he encontrado que parece haber diferentes formas de hacerlo y solo quería obtener algunos consejos sobre cuál es la forma correcta, o al menos bajo qué circunstancias de una manera debería usarse sobre otro.Fragmentos Android ¿Debería volver a utilizar 1 fragmento o crear nuevas instancias?
Un ejemplo creó un diseño que contenía un fragmento y un FrameLayout. En el código, cuando se selecciona un elemento de ListFragment, se crea un nuevo Fragment (con algunos datos que se requieren en el constructor) y FrameLayout se reemplaza con este nuevo Fragment (usando FragmentTransaction.replace()).
Otro ejemplo tiene un archivo de diseño que declara los 2 fragmentos uno al lado del otro. Ahora, en el código, cuando el usuario selecciona un elemento de la lista en un fragmento, se realiza una llamada al otro fragmento para actualizar los datos (en función del elemento seleccionado).
Así que me pregunto si se prefiere alguno de estos métodos sobre el otro o si hay ciertas circunstancias en las que se debe utilizar uno.
EDIT: aquí está el código para cada uno de los dos métodos que me refería:
1:
mCurCheckPosition = index;
if (mDualPane) {
// We can display everything in-place with fragments, so update
// the list to highlight the selected item and show the data.
getListView().setItemChecked(index, true);
// Check what fragment is currently shown, replace if needed.
DetailsFragment details = (DetailsFragment)
getFragmentManager().findFragmentById(R.id.details);
if (details == null || details.getShownIndex() != index) {
// Make new fragment to show this selection.
details = DetailsFragment.newInstance(index);
// Execute a transaction, replacing any existing fragment
// with this one inside the frame.
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.details, details);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
}
} else {
// Otherwise we need to launch a new activity to display
// the dialog fragment with selected text.
Intent intent = new Intent();
intent.setClass(getActivity(), DetailsActivity.class);
intent.putExtra("index", index);
startActivity(intent);
}
2:
public void onListItemClick(ListView l, View v, int position, long id) {
String item = (String) getListAdapter().getItem(position);
DetailFragment fragment = (DetailFragment) getFragmentManager()
.findFragmentById(R.id.detailFragment);
if (fragment != null && fragment.isInLayout()) {
fragment.setText(item);
} else {
Intent intent = new Intent(getActivity().getApplicationContext(),
DetailActivity.class);
intent.putExtra("value", item);
startActivity(intent);
}
}