İçin geliştirme yaparken Android
, hedef (veya minimum) sdk'nizi 4 (API 1.6) olarak ayarlayabilir ve destek eklemek için android uyumluluk paketini (v4) ekleyebilirsiniz Fragments
. Dün bunu yaptım ve Fragments
özel bir sınıftaki verileri görselleştirmek için başarıyla uyguladım .
Sorum şu: Fragments
Özel bir nesneden yalnızca bir Görünüm almak ve API 1.5'i desteklemeye devam etmek yerine kullanmanın faydası nedir?
Örneğin, Foo.java sınıfına sahip olduğumu varsayalım:
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
Her iki yöntemin de oluşturulması ve gösterilmesi gereken bir Aktivitede çalışmak çok basittir List<Foo>
(örneğin, her birini a'ya programlı olarak eklemek ScrollView
), bu yüzden Fragments
gerçekten yararlıdırlar mı yoksa yalnızca Yukarıdaki kod aracılığıyla olduğu gibi bir Görünüm elde ediyor musunuz?