本文介绍了SupportMapFragment中的ListView头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我与片段工作基于应用程序,需要使用谷歌地图API V2用于显示地图。我试图让 SupportMapFragment 的ListView 头和不知道如何做到这一点。

I am working with Fragment based application and need to use Google Maps API v2 for showing the map. I am trying to get SupportMapFragment into ListView header and not sure how to achieve that.

我试图创建的newInstance 片段,并要求 getView 来设置为headerView,但 getView 将返回我空。

I've tried creating newInstance of fragment and calling getView to be set as headerView, but getView is returning me null.

这不工作:

SupportMapFragment s = SupportMapFragment.newInstance();
list.addHeaderView(s.getView());

感谢。

推荐答案

得到它通过定义自己的XML文件中的片段,膨胀这一观点,并补充工作,作为头视图。

Got it working by defining the fragment in own xml file, inflating that view and adding that as header view.

这篇关于SupportMapFragment中的ListView头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 16:32