应用程序在具有outofmemory错误的galaxy s3上崩溃

时间:2013-05-14 18:21:31

标签: android bitmap out-of-memory

我的应用程序适用于480 * 800手机。但它在720p手机上崩溃了。我在galaxy s3和xperia sl上进行了测试。这是logcat错误enter image description here

根据我的判断导致错误的代码是这个

mapView = new MapView(this) {
            @Override
            public boolean onTouchEvent(MotionEvent event) {
                if (gestureDetector.onTouchEvent(event)) {
                    return true;
                }
                return super.onTouchEvent(event);
            }
        };

        mapView.setClickable(true);
        mapView.setCenter(new GeoPoint(33.698351,73.063889));
        mapView.zoom((byte) 12, 5);
        mapView.setBuiltInZoomControls(true);
        mapView.setMapFile(new File(Environment.getExternalStorageDirectory()+"/pakistan.map"));

0 个答案:

没有答案