Fragment中加载ListView问题

Fragment作为Activity的片段,在安卓开发中被使用的频率非常高,同时ListView作为最常用的控件,因此在Fragment中加载ListView也是非常常用的,下面介绍一下具体的Fragment中加载ListView的步骤:

1)定义一个继承自ListFragment的Fragment(TestFragment);


2)在xml中,要加载的ListView的id必须设置为 android:id="@+id/android:list"  !!!   而在代码中ListView的名称必须设置为LIst


3)只能使用SimpleAdapter或者是SimpleCursorAdapter(与数据库打交道的Aapter)作为适配器


4)在onCreateView方法中定义View加载你的Layout文件 View rootview=inflater.inflate(R.layout.testfragment,container,false)


5)在onCreateView方法中绑定ListView控件 list=(ListView)rootview.findViewById(android.R.id.list)(注意id的调用方式)


6)在onCreate方法中将已经初始化好的SimpleAdapter直接传入方法setListAdapter()中即可(无需设置给List)


7)至于ListView点击事件的监听,重写ListFragment的onListItemClick(ListView l, View v, int position, long id)方法即可


你可能感兴趣的:(Fragment中加载ListView问题)