API LEVEL 11
1.使用ListFragment可实现包含Listiew的Fragment
2.在Fragment的布局中必须包含id “@android:id/list”(在代码中则是list)的Listview
3.只能使用SimpleAdapter或者SimpleCursorAdapter作为适配器
4.直接使用ListFragment的setListAdapter()来设置适配器【不要给ListView设置】
5.ListView点击事件的监听,重写ListFragment的onListItemClick(ListView l, View v, int position, long id)方法