Podczas programowania dla Android
możesz ustawić docelowy (lub minimalny) pakiet SDK na 4 (API 1.6) i dodać pakiet zgodności dla systemu Android (v4), aby dodać obsługę Fragments
. Wczoraj zrobiłem to i pomyślnie zaimplementowałem Fragments
wizualizację danych z niestandardowej klasy.
Moje pytanie brzmi: jaka jest korzyść z używania Fragments
w przeciwieństwie do zwykłego uzyskiwania widoku z niestandardowego obiektu i nadal obsługującego API 1.5?
Na przykład, powiedzmy, że mam klasę 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
Obie metody są bardzo proste do utworzenia i pracy w działaniu, które, powiedzmy, ma List<Foo>
do wyświetlenia (na przykład programowe dodawanie każdej z nich do a ScrollView
), więc są Fragments
naprawdę bardzo przydatne, czy też są po prostu przesadnym uproszczeniem uzyskiwanie widoku, na przykład za pomocą powyższego kodu?