我有一个 Activity,它有一个滚动视图,可以计算很多东西......其中之一是 mapfragment api v2。最大的拖钓问题是当我垂直移动地图时,所有的卷轴都会移动,我不想要这个。当我触摸并移动地图时,我真的希望滚动视图不要移动。
代码如下:
public class MyMap extends FragmentActivity {
...
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
setContentView(R.layout.map);
...
fm = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapfoto);
googleMap = fm.getMap();
/** Here i can do something like googleMap.setOnToucListener()....
but it's not supported!!!! */
...
}
}
和map.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"
android:layout_below="@+id/scroll"
tools:context=".MyMap">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:id="@+id/relativeLayoutA"
android:layout_below="@+id/mapfoto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="400dp"
class="com.google.android.gms.maps.SupportMapFragment" />
...
</RelativeLayout>
...
</RelativeLayout>
</ScrollView>
我尝试使用 OnMapClickListener() 和 OnMapLongClickListener() 但没有用
所有的帮助都很好...