Розробляючи для Android
, ви можете встановити цільовий (або мінімальний) sdk до 4 (API 1.6) та додати пакет сумісності Android (v4), щоб додати підтримку Fragments
. Вчора я це зробив і успішно реалізував, Fragments
щоб візуалізувати дані з користувацького класу.
Моє запитання таке: яка вигода від використання Fragments
на відміну від простого перегляду від користувальницького об'єкта та підтримки API 1.5?
Наприклад, скажіть, що у мене клас 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
Обидва методи дуже прості у створенні та роботі з діяльністю, яка, скажімо, має List<Foo>
відображення (наприклад, програмне додавання кожного до а ScrollView
), тому Fragments
насправді це все корисно, або вони є лише надто прославленим спрощенням отримання представлення даних, наприклад, через код вище?