Viewpager中的Google Map实施,错误无法获取提供商

Viewpager中的Google Map实施,错误无法获取提供商,第1张

Viewpager中的Google Map实施,错误无法获取提供商

我有解决方案,而不是使用onViewCreated()方法代替onActivityCreated()方法,而是使用了构建版本目标API 23,谢谢。

@Override    public void onViewCreated(View view, Bundle savedInstanceState) {        insertNestedFragment();    }    // Embeds the child fragment dynamically    private void insertNestedFragment() {        FragmentManager fm = getChildFragmentManager();        mSupportMapFragment = (SupportMapFragment) fm.findFragmentById(R.id.child_fragment_container);        if (mSupportMapFragment == null) { mSupportMapFragment = SupportMapFragment.newInstance(); fm.beginTransaction().replace(R.id.child_fragment_container, mSupportMapFragment).commit();        }    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5600988.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存