问题描述如下:
protected void onActivityResult(int arg0, int arg1, Intent arg2) { super.onActivityResult(arg0, arg1, arg2); }
希望效果如下: protected void onActivityResult(int requestCode, int resultCode, Intent data){ super.onActivityResult(requestCode, resultCode, data); }
解决方法
1 现在Android SDk source源码(使用Android SDK Manager)
2 点击当前类的父类,跳转到会弹出一个提示找不到源码的页面
3 点击页面上的按钮,选择第一步下载的Android SDk source目录即可。
本文出自 “心向菩提” 博客,请务必保留此出处http://zhongkun.blog.51cto.com/1057583/1577345
Eclipse--继承方法的参数为arg0、arg1(可读性不强)解决方法
原文地址:http://zhongkun.blog.51cto.com/1057583/1577345