1

我在我的应用程序中使用 Google Maps V2,当我将方向更改为横向(或基本上更改方向)时,onMapClick 方法没有响应并且即使在方向再次更改后也不响应。我知道我可以通过设置 configChange:orientation|screenSize 来避免这个奇怪的错误,但是当方向改变时,我的对话布局不会将它们的布局从 layout-portrait 更改为 layout-landscape。这一切都在一项活动中。有没有人遇到过这个问题?地图有什么问题?我不明白问题出在哪里,为什么应该取消注册听众。我在 onCreateMethod 中注册它:@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);

    DisplayMetrics dm = getResources().getDisplayMetrics();
    screenWidth = dm.widthPixels;
    screenHeight = dm.heightPixels;

    FontUtils.setCustomFont(this, (ViewGroup) getWindow().getDecorView());

    RelativeLayout topBar = (RelativeLayout) findViewById(R.id.topBar);
    LinearLayout placeTextLayout =    (LinearLayout)topBar
                                                  .findViewById(R.id.placeTextLayout);
    placeTextView = (TextView) placeTextLayout.findViewById(R.id.placeText);

    sharedPrefs = getSharedPreferences
                              (SkyConstants.PREFS_NAME,Context.MODE_PRIVATE);
    String place = sharedPrefs.getString
                  (SkyConstants.PREF_LOCATION_ID,SkyConstants.PREF_LOCATION_DEFAULT);

    dateTextView = (TextView) topBar.findViewById(R.id.dateText);
    daysTextView = (TextView) topBar.findViewById(R.id.timeText);

    updateTopBar();
    setUpMapIfNeeded();
}

private void setUpMapIfNeeded()
{
    if (mMap == null)
    {
        mMap = ((SupportMapFragment)getSupportFragmentManager()
                                                 .findFragmentById(R.id.map)).getMap();     
    }
    if (mMap != null)
    {
        mMap.getUiSettings().setZoomControlsEnabled(true);
        mMap.getUiSettings().setZoomGesturesEnabled(true);          
        mMap.setMapType(GoogleMap.MAP_TYPE_TERRAIN);

        mMap.setOnMapClickListener(new OnMapClickListener()
        {
            @Override
            public void onMapClick(LatLng point)
            {
            //do something  

            }

        });
    }
}
4

2 回答 2

1

这是由于创建了方向视图,如果您处于纵向模式,并且您更改为横向,它会再次创建视图,您需要再次设置 onClickListener。

如果您以横向模式启动活动,也会发生同样的情况。

于 2013-03-21T16:36:43.277 回答
0

在 onCreate() 方法中将 map 设置为 null 有助于我处理系统的方向更改。所以首先我设置 mMap=null 然后我设置地图。

于 2013-03-30T11:02:23.963 回答