0

我在 MapView 上有一个 EditText。现在当文本被编辑时,我希望地图视图越过 EditText 元素(通过 TranslateAnimation)。地图视图的转换工作,但似乎地图视图不是为翻译而设计的,因为在翻译后无法在没有呈现错误的情况下使用地图视图导航。

有同样问题的人知道解决方案或有解决方法吗?

谢谢

4

1 回答 1

0

MapView尝试用视图包装所有内容,如下所示:

<RelativeLayout 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" >

    <com.google.android.gms.maps.MapView
        android:id="@+id/sherlock_map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <View
        android:id="@+id/dumberView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/transparent" />

</RelativeLayout>

让我知道这是否对您有帮助。希望能帮助到你 :]

于 2013-10-23T12:44:51.430 回答