我正在创建一个android应用程序,我有一个活动,其中包括一个ScrollView和一个MapView。
当我滚动滚动视图时,谷歌地图周围会出现一个黑色渲染。喜欢这个视频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) {
}
}
我该如何解决这个问题?
最后,我只需在Manifest.xml 中添加这一行就找到了解决方案
android:hardwareAccelerated="true"