我知道有很多这样的帖子,但没有解决方案帮助过我。
我有一个有两个片段的viewpager,第二个是我的地图。 但每次我尝试在该地图上绘制折线时,我都会得到一个零点异常。 只有当我使用setContentView时,它才能找到我的地图片段(但这会破坏我的viewpager)。
我的部分活动:
public void buttonMaps_Click(View view) {
// setContentView(R.layout.fifth_fragment);
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
if (mapFragment != null) {
GoogleMap map = mapFragment.getMap();
// map1 = ((SupportMapFragment)
// getSupportFragmentManager().findFragmentById(R.id.map1)).getMap();
Polyline line = map.addPolyline(
new PolylineOptions().add(mP0, mP1, mP2, mP3, mP4, mP5, mP6, mP7, mP8).width(5).color(Color.BLUE));
}
}
我的片段xml。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fifth_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="312dp"
android:tag="lumpeneimer" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/map"
android:layout_centerHorizontal="true"
android:layout_marginTop="29dp"
android:onClick="buttonMaps_Click"
android:text="Button" />
</RelativeLayout>
有没有办法在不使用setContentView的情况下绘制折线?
编辑:我在我的fragment.java上尝试了这个:
public class FifthFragment extends Fragment implements OnMapReadyCallback {
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstaceState) {
// TODO Auto-generated method stub
SupportMapFragment mapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
return (LinearLayout) inflater.inflate(R.layout.fifth_fragment, container, false);
@Override
public void onMapReady(GoogleMap googleMap) {
GoogleMap map = googleMap;
// TODO Auto-generated method stub
Polyline line = map.addPolyline(
new PolylineOptions().add(mP0, mP1, mP2, mP3, mP4, mP5, mP6, mP7, mP8).width(5).color(Color.BLUE));
}
但仍然得到了NullPoint:
mapFragment.getMapAsync(this);
答案 0 :(得分:4)
在系统正确初始化之前,映射可能需要一段时间。您应该让Activity
/ Fragment
实施OnMapReadyCallback
,将其注册为callback
mapFragment.getMapAsync(this);
并等到
@Override
public void onMapReady(GoogleMap googleMap) {
调用来初始化GoogleMap
对象。