黑色在地图视图周围渲染

时间:2018-07-10 08:47:46

标签: android google-maps

我正在创建一个android应用程序,并且我有一个Activity,其中包含ScrollView和MapView。

当我滚动ScrollView时,谷歌地图周围会出现黑色渲染。喜欢这部影片https://www.youtube.com/watch?v=tBkU7FuNawE&feature=youtu.be

这是我的代码

activity_test_map_view.xml

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            //some content

        </LinearLayout>

        <com.google.android.gms.maps.MapView
            android:id="@+id/map_view"
            android:layout_width="match_parent"
            android:layout_height="250dp" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">
             //some content           

        </LinearLayout>

    </LinearLayout>

</ScrollView>

TestMapViewActivity

    public class TestMapViewActivity extends AppCompatActivity implements OnMapReadyCallback{

        MapView mapView;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_test_map_view);

    //        // Gets the MapView from the XML layout and creates it
            mapView.onCreate(savedInstanceState);
            // Gets to GoogleMap from the MapView and does initialization stuff
            mapView.getMapAsync(this);


        }

        @Override
        public void onMapReady(GoogleMap googleMap) {
        }
}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

最后我找到解决方案,只需在Manifest.xml中添加这一行

android:hardwareAccelerated="true"