我的问题:我可以在MapView中上下滚动,而不是左右滚动。
我的LinearLayout中有一个MapView,它由嵌套滚动视图控制。所以我的layout.xml看起来像这样:
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
...
<com.google.android.gms.maps.MapView
android:layout_width="match_parent"
android:layout_height="160dp"
android:layout_margin="10dp"
android:id="@+id/jd_map_view"/>
...
</LinearLayout>
我正在片段中初始化MapView,由TabLayout控制,如下所示:
mapView = (MapView) mRootView.findViewById(R.id.jd_map_view);
mapView.onCreate(savedInst);
mapView.onResume();
mapView.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(GoogleMap googleMap) {
LatLng latlng = new LatLng(mLat, mLng);
googleMap.addMarker(new MarkerOptions().position(latlng));
CameraUpdate center= CameraUpdateFactory.newLatLng(latlng);
CameraUpdate zoom=CameraUpdateFactory.zoomTo(14);
googleMap.moveCamera(center);
googleMap.animateCamera(zoom);
}
});
它或多或少正常工作,意味着我看到一张地图,看到我的标记,地图就在右边的位置。但不幸的是,我无法向右滚动......
答案 0 :(得分:0)
这不适合你吗?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.MapFragment" />
</RelativeLayout>
答案 1 :(得分:0)
如果您将地图放在简单的framelayout中,地图将自动向任意方向滚动,而不是使用滚动布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="thiscode.databasedemo.Main">
<TextView
android:id="@+id/tv"
// adjust margins for your need.
android:layout_marginTop="30dp"
// etc
<FrameLayout
android:id="@+id/fl"
android:layout_below="@+id/tv"
android:layout_height="fill_parent"
// adjust margins for your need.
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="40dp"
android:layout_width="match_parent">
<fragment
android:id="@+id/map"
android:layout_height="fill_parent"
android:layout_width="match_parent"
android:name="com.google.android.gms.maps.MapFragment"/>
</FrameLayout>
</RelativeLayout>
活动:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.act_main);
// create class object
fragmentManager = getFragmentManager();
//
try {
GoogleMap googleMap =
((MapFragment) fragmentManager.findFragmentById(R.id.map))
.getMap();
// example data.
googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
LatLng latlng = new LatLng(0.083037, 106.704897);
CameraPosition cameraPosition =
new CameraPosition.Builder().target(latlng).zoom(2).build();
googleMap.animateCamera(
CameraUpdateFactory.newCameraPosition(cameraPosition));
} catch (Exception e) {
e.printStackTrace();
}