android.support.v4.app.Fragment$InstantiationException问题解决
【摘要】
程序开发中遇到了android.support.v4.app.Fragment$InstantiationException这个bug,给出的提示是:
make sure class name exists, is public, and has an empty constructor that is public。看了下自己写的代...
程序开发中遇到了android.support.v4.app.Fragment$InstantiationException这个bug,给出的提示是:
make sure class name exists, is public, and has an empty constructor that is public。看了下自己写的代码,重写了一个带参数的构造参数用来new Fragment的时候传值,那构造的时候肯定不走默认构造了。google了下,StackOverflow上给出了解决的办法。
写一个静态方法来实例化自己的Fragment。代码如下:
public static final Fragment newInstance(String key){
- Fragment fragment = new RealtimeSearchFragment();
- Bundle bundle = new Bundle();
- bundle.putString("key", key);
- fragment.setArguments(bundle);
- return fragment;
- }
在自己的Activity里这样获取这个Fragment:
Fragment realtimeSearchFragment = RealtimeSearchFragment.newInstance(realSearchKey);
在自己的Fragment 的onCreateView方法里获取Activity传过来的值:
getArguments().getString("key")
这样就ok了。
文章来源: wukong.blog.csdn.net,作者:再见孙悟空_,版权归原作者所有,如需转载,请联系作者。
原文链接:wukong.blog.csdn.net/article/details/44593089
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)