我正在使用Google Maps API V2制作应用,但地图的质量非常低。当我在同一部手机上打开Google地图应用时,质量会更高。我需要设置一些配置选项吗?这是我的代码:
GoogleMapOptions options = new GoogleMapOptions();
options.tiltGesturesEnabled(false);
options.rotateGesturesEnabled(false);
mapFragment = MapFragment.newInstance(options);
android.app.FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.add(R.id.map_holder, mapFragment);
ft.commit();
这是布局:
<RelativeLayout
android:id="@+id/map_holder"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_width="match_parent">
<ImageView
android:src="@drawable/map_pin"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="24dp" />
</RelativeLayout>