listfragment 中的 listview 不能运行

来源:互联网 发布:加入淘宝客的要求 编辑:程序博客网 时间:2024/06/06 02:55

在 Mainactivity 中我从一个 xml 文件中获取内容。然后我想在 fragment 中用 listview 填充

首先在清单文件中假如组件

<fragment     android:name="com.example.fragmentexam.FragementList"    android:id="@+id/frag_list"    android:layout_width="fill_parent"    android:layout_height="0dp"    android:layout_weight="2"    />

然后自定义这个FragementList类这个类继承ListFragment

</pre><pre name="code" class="java">public class FragementList extends ListFragment {@Overridepublic View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {return inflater.inflate(R.layout.frag_list, container,false);}@Overridepublic void onActivityCreated(Bundle savedInstanceState) {super.onActivityCreated(savedInstanceState);
<span style="white-space:pre"></span>//<span style="white-space:pre"></span>第一个参数是上下文,第二个参数是数据(data),第三个是ListVew显示的样式SimpleAdapter adapter = new SimpleAdapter(getActivity(), listItems, R.layout.list_item,new String[]{"values","images"}, new int[]{R.id.list_text,R.id.list_img});setListAdapter(adapter);}

frag_list.xml文件

特别注意的是ListView的id必须是android:list否则会出现错误

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="horizontal" >      <ListView       android:id="@id/android:list"      android:layout_width="fill_parent"      android:layout_height="fill_parent"      ></ListView></LinearLayout>


0 0
原创粉丝点击