在eclipse模板中获取类类型

时间:2014-02-25 10:02:41

标签: android eclipse templates code-snippets

我正在学习为日食制作片段。我的想法是制作快速findViewByIds的东西,所以当你声明一个var时,代码片段会得到var的类型和名称,并写下其余的代码。

如果你写

Button myButton findView

该代码段应该获取Class(Button)和名称(myButton)并写入:

= (Button) findViewById(R.id.myButton);

我做得很好,但我不能得到Button类。有帮助吗?我的代码是

= ($type)findViewById(R.id.${name:var});
${cursor}

1 个答案:

答案 0 :(得分:2)

你应该试试这个:

${type} ${new_name} = (${type})findViewById(R.id.${name});${cursor}