如何在android中获取自动完成有意义的参数?

时间:2013-12-31 10:47:32

标签: android

有没有办法在android studio中使用有意义的参数获取自动生成的代码?

看一下这个例子:

第一个无意义的参数>>

public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) 

第二个有意义的参数&gt;&gt;

public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) 

提前致谢

1 个答案:

答案 0 :(得分:3)

您只能在自己定义的方法中使用这些有意义的参数,并将其添加到eclipse / android studio列表中。不幸的是,你无法在已经由android提供的重写方法中做到这一点。

更新: 在代码完成中需要源代码才能获得正确的参数名称。 Android SDK直到4.0平台版本(API版本14)才捆绑源,因为此时源代码可用。转到project structure - &gt; platform settings - &gt; SDKS,然后点击各个平台,看看您是否可以在documentationPath标签中找到该来源。