更换SupportMapFragment时如何修复黑屏

时间:2019-02-05 19:24:15

标签: android android-fragments mapbox

我正在使用片段(使用mapbox-android-sdk:7.1.0)创建一个简单的应用程序。

我有一个由FrameLayout(包含Fragments)和一个按钮组成的活动。

开头,Fragment1(包含地图)显示在FrameLayout中。当用户单击按钮时,Fragment1被Fragment2(包含TextView)替换。

在过渡期间会出现一小段黑屏。

当我在活动中使用Mapbox时,我没有任何问题,似乎是在调用onDestroyView()方法时发生的。

MainActivity.java:

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Load Fragment1 containing the map
        getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new Fragment1()).commit();


        AppCompatButton button = findViewById(R.id.btn_changeFragment);
        button.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // Load Fragment2 containing a TextView
                getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new Fragment2()).addToBackStack(null).commit();
            }
        });
    }
}

Fragment1.java:

public class Fragment1 extends SupportMapFragment {
    private MapView mapView;

    public Fragment1(){}

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Mapbox.getInstance(getContext(), getString(R.string.mapbox_token));
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        super.onCreateView(inflater, container, savedInstanceState);
        View view = inflater.inflate(R.layout.fragment_1, container, false);
        mapView = view.findViewById(R.id.mapView);
        mapView.onCreate(savedInstanceState);
        mapView.getMapAsync(new OnMapReadyCallback() {
            @Override
            public void onMapReady(@NonNull final MapboxMap mapboxMap) {
                mapboxMap.setStyle(Style.LIGHT, new Style.OnStyleLoaded() {
                    @Override
                    public void onStyleLoaded(@NonNull Style style) {
                        // Configure the map
                    }
                });
            }
        });

        return view;
    }

    @Override
    public void onStart() {
        super.onStart();
        mapView.onStart();
    }

    @Override
    public void onResume() {
        super.onResume();
        mapView.onResume();
    }

    @Override
    public void onPause() {
        super.onPause();
        mapView.onPause();
    }

    @Override
    public void onStop() {
        super.onStop();
        mapView.onStop();
    }

    @Override
    public void onLowMemory() {
        super.onLowMemory();
        mapView.onLowMemory();
    }

    @Override
    public void onDestroyView() {
        super.onDestroyView();
        mapView.onDestroy();
    }

    @Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        mapView.onSaveInstanceState(outState);
    }
}

3 个答案:

答案 0 :(得分:1)

这是MapFragment行为的一个已知问题:https://github.com/mapbox/mapbox-gl-native/issues/9570。根据票证,当前有两种方法可以解决您应用中的此问题。

任一

  1. 在过渡时使用ImageView中的地图位图代替MapView。然后,您可以在活动中的OnMapReady回调中使MapView可见。

  1. 改为使用TextureView实现。可以通过MapboxMapOptions.xml属性启用。您还应该记住,此解决方案可能会导致性能问题。

答案 1 :(得分:0)

我尝试了@riastrad提出的第一个解决方案,但没有找到如何制作mapView的位图的方法(我总是在白色屏幕的底部有mapbox徽标)。

无论如何,我尝试使用setAlpha来更改mapView的不透明度,并且可以正常工作。我真的不知道为什么它不适用于setVisibility(View.INVISIBLE)

因此,在加载Fragment2之前,我从Fragment1调用了一个方法,将mapView的不透明度设置为0。

MainActivity.java

button.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
        Fragment currentFragment = getSupportFragmentManager().findFragmentById(R.id.fragment_container);
        if(currentFragment instanceof Fragment1){
            // Set the opacity of the mapView to 0
            ((Fragment1) currentFragment).transition();
            // Load Fragment2 containing a TextView
            getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new Fragment2()).addToBackStack(null).commit();
        }else {
            getSupportFragmentManager().popBackStack();
        }
    }
});

Fragment1.java

public void transition(){
    mapView.setAlpha(0f);
}

答案 2 :(得分:0)

在片段中加载mapview时,使用此属性app:mapbox_renderTextureMode =“ true”可以帮到我。