Ao desenvolver para Android
, você pode definir seu sdk de destino (ou mínimo) para 4 (API 1.6) e adicionar o pacote de compatibilidade do Android (v4) para adicionar suporte para Fragments
. Ontem fiz isso e implementei Fragments
com sucesso para visualizar dados de uma classe personalizada.
Minha pergunta é a seguinte: qual é o benefício de usar Fragments
em vez de simplesmente obter uma visualização de um objeto personalizado e ainda oferecer suporte à API 1.5?
Por exemplo, digamos que eu tenha a classe 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 os métodos são muito simples de criar e trabalhar em uma Activity que, digamos, tem um List<Foo>
para exibir (por exemplo, adicionar programaticamente cada um a um ScrollView
), então são Fragments
realmente úteis ou são apenas uma simplificação exagerada de obtendo uma visualização, como por meio do código acima?