TabHost 片段中的 MapActivity 在选项卡切换后消失

2024-01-04

我正在尝试使用片段在一组选项卡中显示地图。 我遇到的问题是,如果用户导航到另一个片段然后返回,地图活动就会消失。 如何在 tabhost 中以片段形式显示 MapActivity?

其基础来自于围绕如何将 MapActivity 与片段集成的众多问题(请参阅片段中的 MapView(蜂窝) https://stackoverflow.com/questions/5109336/mapview-in-a-fragment-honeycomb)

MainTabActivity 有一个 tabhost 并使用 FragmentManager 在选项卡中显示 Fragment。 MapFragment 有一个 tabhost 并使用它来显示 MapActivity。
MapFragment 确实使用 LocalActivityManager 将生命周期事件传播到所包含的活动。

所以MapFragment:

   public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.map_fragment, container, false);
        mTabHost = (TabHost) view.findViewById(android.R.id.tabhost);
        mTabHost.setup(getLocalActivityManager());
        Intent intent = new Intent(getActivity(), MapActivityWrapper.class);
//        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);//does nothing
        TabHost.TabSpec tab = mTabHost.newTabSpec("map")
                .setIndicator("map")
                .setContent(intent);
        mTabHost.addTab(tab);
        return view;
    }

MapFragment布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:orientation="vertical">
    <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@android:id/tabhost"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent">
        <LinearLayout android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
            <TabWidget android:id="@android:id/tabs"
                    android:visibility="gone"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"/>
            <FrameLayout android:id="@android:id/tabcontent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>
        </LinearLayout>
    </TabHost>
</LinearLayout>

MainTabActivity 中用于更改选项卡内容的代码:

private void updateTab(String oldId, String tabId) {
    FragmentManager fm = getSupportFragmentManager();
    Fragment old = fm.findFragmentByTag(oldId);
    Fragment selected = fm.findFragmentByTag(tabId);
    FragmentTransaction ft = fm.beginTransaction();
    boolean added = false;
    if (selected == null) {
        selected = createFragment(tabId);
    } else {
        try {
            ft.remove(selected);
        } catch (Exception e) {
            ft.add(android.R.id.tabcontent, selected, tabId);
            added = true;
            //exception for removing an unadded fragment... why throw an exception?
        }
    }
    if (old != null) ft.remove(old);
    if (!added) ft.replace(android.R.id.tabcontent, selected, tabId);
    if (!creating && !backStackProcessing) ft.addToBackStack(null);//member vars
    ft.commit();
}

MainTabActivity布局(删除了一堆不相关的布局):

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#EFEFEF">
    <RelativeLayout android:layout_width="fill_parent"
            android:layout_height="fill_parent">
        <FrameLayout android:id="@android:id/tabcontent"
                android:layout_gravity="top"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@color/app_default_bg"
                android:layout_above="@+id/ad_region"
                android:layout_below="@+id/quick_action_region">
            <FrameLayout android:id="@+id/tab1"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>
            <FrameLayout android:id="@+id/tab2"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>
            <FrameLayout android:id="@+id/map_tab"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>
            <FrameLayout android:id="@+id/tab3"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>
        </FrameLayout>
        <TabWidget android:layout_width="fill_parent"
                   android:id="@android:id/tabs"
                   android:layout_height="wrap_content"
                   android:layout_alignParentBottom="true"
                   android:layout_alignParentLeft="true"/>
    </RelativeLayout>
</TabHost>

再次 - 我遇到的问题是,如果用户导航到另一个片段然后返回,地图活动就会消失。 如何在 tabhost 中以片段形式显示 MapActivity?

非常感谢。


如果你用过ViewPager在你的项目中,调用setOffscreenPageLimit()如下所示:

this.mViewPager.setOffscreenPageLimit(fragments.size());

其中fragments是您创建的片段的向量

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

TabHost 片段中的 MapActivity 在选项卡切换后消失 的相关文章

随机推荐