Al desarrollar para Android
, puede establecer su sdk objetivo (o mínimo) en 4 (API 1.6) y agregar el paquete de compatibilidad de Android (v4) para agregar soporte para Fragments
. Ayer hice esto y lo implementé Fragments
con éxito para visualizar datos de una clase personalizada.
Mi pregunta es la siguiente: ¿cuál es el beneficio de usar Fragments
en lugar de simplemente obtener una Vista de un objeto personalizado y aún admitir API 1.5?
Por ejemplo, digamos que tengo la clase Foo.java:
public class Foo extends Fragment {
/** Title of the Foo object*/
private String title;
/** A description of Foo */
private String message;
/** Create a new Foo
* @param title
* @param message */
public Foo(String title, String message) {
this.title = title;
this.message = message;
}//Foo
/** Retrieves the View to display (supports API 1.5. To use,
* remove 'extends Fragment' from the class statement, along with
* the method {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)})
* @param context Used for retrieving the inflater */
public View getView(Context context) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.foo, null);
TextView t = (TextView) v.findViewById(R.id.title);
t.setText(this.title);
TextView m = (TextView) v.findViewById(R.id.message);
m.setText(this.message);
return v;
}//getView
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (container == null) {
return null;
}
View v = inflater.inflate(R.layout.foo, null);
TextView t = (TextView) v.findViewById(R.id.title);
t.setText(this.title);
TextView m = (TextView) v.findViewById(R.id.message);
m.setText(this.message);
return v;
}//onCreateView
}//Foo
Ambos métodos son muy simples de crear y trabajar en una actividad que, por ejemplo, tiene un List<Foo>
para mostrar (por ejemplo, agregar programáticamente cada uno a ScrollView
), por lo que son Fragments
realmente muy útiles, o son solo una simplificación exagerada de obtener una vista, como a través del código anterior?