fragment使用intent

Posted fish in the sea

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fragment使用intent相关的知识,希望对你有一定的参考价值。

将Intent intent01=new Intent();
intent01.setClass(MainActivity.this,Calorie.class);
startActivity(intent01);
改成
Intent intent01=new Intent();
intent01.setClass(getActivity(),Calorie.class);
startActivity(intent01);


来自http://blog.csdn.net/wu_wxc/article/details/50951338
【吴孝城的CSDN博客】

以上是关于fragment使用intent的主要内容,如果未能解决你的问题,请参考以下文章

Android Fragment使用 嵌套Fragments (Nested Fragments) 的使用及常见错误

Fragment的使用方式

FragmentViewPager中使用Fragment

FragmentViewPager中使用Fragment

FragmentViewPager中使用Fragment

Fragment全解析系列:正确的使用姿势