首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Fragment中怎么获取listview

2013-12-28 
Fragment中如何获取listview我的FileFragment继承了Fragment,现在我想要在FileFragment中获取获取file.xml

Fragment中如何获取listview
    我的FileFragment继承了Fragment,现在我想要在FileFragment中获取获取file.xml中的一个listview,我用了下面两种方式:
       //fileListView=(ListView)getActivity().findViewById(R.id.file_list);得到空指针
fileListView=(ListView)inflater.inflate(R.id.file_list, null);找不到资源

    请指教在Fragment中如何获取listview。
[解决办法]

View rootView = inflater.inflate(R.layout.file, null); //先解析file.xml布局,得到一个view
ListView listView = (ListView) rootView.findViewById(R.id.file_list);

热点排行