在开发涉及Android Google Maps API v2.0的应用时,我发现FragmentManager.findFragmentById()始终返回NULL。我从XML文件中夸大了片段。我可以得到View没有问题,但Fragment本身呢?我甚至尝试了4秒的延迟,以确保在我获得ID时,所有内容都已加载。
//
// res/layout/mapfragment.xml:
//
<?xml version="1.0" encoding="UTF-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
class="com.google.android.gms.maps.SupportMapFragment"/>
// Transmitting resource ID of fragment in XML
ui.setMapFragmentResourceID(R.layout.mapfragment);
..
// Showing map
@Override
public void showMap() {
...
m_map = m_currentActivity.getLayoutInflater().inflate(m_mapFragmentResourceID, null);
cv.postDelayed(new Runnable() {
@Override
public void run() {
afterShowMapView();
}
}, 4000);
}
// 4000 msec delay to allow for everything to load
public void afterShowMapView()
{
FragmentActivity fa = (FragmentActivity)m_currentActivity;
FragmentManager fm = fa.getSupportFragmentManager();
SupportMapFragment f = (SupportMapFragment)fm.findFragmentById(m_mapFragmentResourceID);
}
//
// f is always null
//
如何获取Fragment / SupportFragment对象本身(与通过扩展布局得到的视图相反)?
答案 0 :(得分:2)
您使用正确的ID,即基于XML的R.id.map
。如果我正确理解您的代码,您使用的是R.layout.mapfragment
。