3
我有一個活動,有一個滾動視圖,計數很多東西......其中之一是mapfragment api v2。大和行車問題是當我垂直移動地圖時,所有的滾動移動,我不想要這個。當我觸摸並移動地圖時,我確實希望滾動視圖不要移動。Android:滾動視圖攔截地圖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(),但沒有奏效
所有的幫助都是很好的...