在为 Android
开发时,可以将目标(或最小) sdk 设置为4(API 1.6) ,并添加 android 兼容性包(v4)以添加对 Fragments
的支持。昨天我这样做了,并成功地实现了 Fragments
来可视化来自定制类的数据。
我的问题是: 与从定制对象获取视图并仍然支持 API 1.5相比,使用 Fragments
有什么好处?
例如,假设我有 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
真的所有有用的,或者他们只是一个过度美化的简化获得一个视图,如通过上面的代码?