1

我需要删除 Activity onPause 事件上的 Google 地图片段并将其添加回 onResume 事件。我怎样才能做到这一点 ?

<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"
    android:id="@+id/mapContainer"
    tools:context=".MainActivity" >

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>
</RelativeLayout>

因此对这个返回按钮很慢

需要它来解决Android 性能问题 - TabHost - Timer - SetCurrentTab() - Google Maps Api V2

编辑 :

其实我做到了。但是还是有延迟的问题。我如何在后台停止/关闭意图?

编辑 :

另外,我现在正在尝试删除并添加回片段,请参阅此-> https://stackoverflow.com/questions/16275349/android-add-supportfragment-and-get-it-back-from-its-tag-null

4

1 回答 1

1

我刚刚删除了tabview。现在真的很快。如果您担心像我这样的情况下的性能,我建议您删除 tabhost 并使用new Intent()。

于 2013-05-11T09:37:59.737 回答