Потеря сенсорных событий в просмотре карты Android (action_move)

У меня есть действие, которое получает сенсорные события (int x,int y, int тип события) и управляет просмотром карты (osmdroid) или кнопками с заданной информацией. Я должен покрыть вид карты, поэтому я поместил его на план рамки и поместил верхнее изображение. Если верхнее изображение видно, я не могу панорамировать вид снизу (но я могу увеличить и увеличить).

это моя активность.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.client.Client"
tools:ignore="MergeRootFrame" >

<Button
            android:id="@+id/Disconnect"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="3"
            android:text="Disconnect/ Reconnect" 
            android:onClick="disconnect"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/frameLayout"
android:layout_below="@+id/disconnect">

<LinearLayout
    android:id="@+id/memeContent"
    android:layout_width="535px"
    android:layout_height="350px"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:orientation="vertical" 
    >

    <org.osmdroid.views.MapView
        android:id="@+id/mapView"
        android:layout_width="match_parent"
        android:layout_height="300px" 
        >
    </org.osmdroid.views.MapView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50px"
         >

        <Button
            android:id="@+id/ZoomIn"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="5"
            android:onClick="ZoomIn"
            android:text="Zoom In"
            android:textSize="10dp" />

        <Button
            android:id="@+id/ZoomOut"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="5"
            android:text="Zoom out"
            android:onClick="ZoomOut" 
            android:textSize="10dp" />

    </LinearLayout>

</LinearLayout>
  <ImageView
    android:id="@+id/imageViewFront"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/image"
    android:scaleType="centerCrop" 
    android:focusable="false"
    android:focusableInTouchMode="false"/>



</FrameLayout>

</RelativeLayout>

и это мой MainActivity.java

public class MainActivity extends Activity {
LinearLayout memecontentView;   
FrameLayout frameLayout;
ImageView imageViewFront;
View v;
MapView mapView;

    @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_client_late);
    imageViewFront= (ImageView) findViewById(R.id.imageViewFront);
    //imageViewFront.setVisibility(View.GONE);
    mapView  = (MapView) findViewById(R.id.mapView);
    mapView.setTileSource(TileSourceFactory.MAPQUESTOSM);
    mapView.setMultiTouchControls(true);
    mapView.setUseDataConnection(true);
    memecontentView=(LinearLayout) findViewById(R.id.memeContent);
    mapView.setBuiltInZoomControls(false);
}
//look for items in given coordinates
public void lookForButton(String msg){
    String[] strArray = msg.split(" ");
    final MotionEvent m;
    final int x=Integer.valueOf(strArray[1]);
    final int y=Integer.valueOf(strArray[2]);
    int type=Integer.valueOf(strArray[3]);
    switch (type){
        case 2:
            m = MotionEvent.obtain(226707,226707,0/*ACTION_DOWN*/,x,y,0);
            runOnUiThread(new Runnable() {
                public void run() {
                    memecontentView.dispatchTouchEvent(m);
                }
            });
            break;
    case 3:
        m = MotionEvent.obtain(226707,226707,1/*ACTION_DOWN*/,x,y,0);
        runOnUiThread(new Runnable() {
            public void run() {
                memecontentView.dispatchTouchEvent(m);
            }
        }); 
        break;
    case 5:
        m = MotionEvent.obtain(226707,226707,2/*ACTION_MOVE*/,x,y,0);
        runOnUiThread(new Runnable() {
            public void run() {
                memecontentView.dispatchTouchEvent(m);
            }
        }); 
        break;  
    }

}
public void ZoomIn(View v){
    mapView.getController().zoomIn();
}
public void ZoomOut(View v){
    mapView.getController().zoomOut();
}
}

Если верхнее изображение не видно (imageViewFront.setVisibility(View.INVISIBLE);) приведенный выше код прекрасно работает, но если я прокомментирую эту строку (мне нужно это сделать), я не смогу панорамировать отображение карты. Я не знаю, крадет ли верхнее изображение свои штрихи. Как я могу предотвратить это? или как я могу заставить сенсорные события MapView работать, даже если mapView находится под?

1 ответ

Решение

Попробуйте установить onTouchEventListener, который возвращает false для всех касаний. Примените это к любому виду, который может быть выше вида карты, включая макеты. Это должно заставить касание перейти к представлению под ним, которое в конечном счете поразит вид карты.

frameLayout.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View arg0, MotionEvent event) {
                 return false;
        }
    });
Другие вопросы по тегам