startActivity 非法启动类型

startActivity illegal start of type

截至今天上午,我已经尝试整合足够的知识来制作一个非常基本的应用程序来演示一个概念。这个想法是显示 google 地图,用户在他们想要添加标记的地方按下,然后弹出一个屏幕,他们可以在其中填写更多信息,然后当有人点击该标记时显示这些信息。

这是我从 Android Studio 基地得到的。

 public class MapsActivity extends FragmentActivity implements 

OnMapReadyCallback {

private GoogleMap mMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maps);
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}

private void setMapLongClick(final GoogleMap map) {
    map.setOnMapLongClickListener(new GoogleMap.OnMapLongClickListener() {
        @Override
        public void onMapLongClick(LatLng latLng) {
        }
    });
}

/**
 * Manipulates the map once available.
 * This callback is triggered when the map is ready to be used.z
 * If Google Play services is not installed on the device, the user will be prompted to install
 * it inside the SupportMapFragment. This method will only be triggered once the user has
 * installed Google Play services and returned to the app.
 */
@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    // Move the camera to Delft
    LatLng delft = new LatLng(52.003569, 4.372987);
    Float zoom = 15f;
    mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(delft, zoom));
    setMapLongClick(mMap);
}
}

我试着添加这个

    private void setMarkerClick(final GoogleMap map) {
    map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
        @Override
        Intent intent = new Intent(this, MainActivity.class);
        this.startActivity(intent);
    });
}

但是我得到 "illegal start of type" 错误。我这样做完全错了吗?
有没有更简单的方法向标记添加信息?

这就是您应该如何使用它。

map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {

    @Override
    public boolean onMarkerClick(Marker marker) {
        Intent intent = new Intent(MainActivity.this, MainActivity.class);
        startActivity(intent);
        return true;
    }
});

您不能调用

this.startActivity(intent);

在匿名 class 中,因为 startActivity 不是匿名 class 的方法,而是封闭 activity 的方法。因此你应该使用

startActivity(intent);

也使用正确的匿名实现。

在创建 Intent 时提供 this 作为第一个参数可能不起作用,因为它指的是 OnMarkerClickListener 匿名 class 而不是 packageContext .这是我的建议,给MapsActivity.this作为参考:

map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {

    @Override
    public boolean onMarkerClick(Marker marker) {
        Intent intent = new Intent(MapsActivity.this, MainActivity.class);
        startActivity(intent);
        return true;
    }
});