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 に答える