LiveTemplate从开始删除点

时间:2017-01-28 06:45:35

标签: android android-studio intellij-idea live-templates

我想在android studio中编辑 fbc 实时模板 我希望在此之后输入ctrl + space:

 someTextView.fbc   // textView or any other view

我的代码转换为此

 someTextView=(TextView)findViewById(R.id.)       

将此fbc模板更改为此

 =($cast$) findViewById(R.id.$resId$);      

但是当我尝试它时,我的代码转换为此

 someTextView.=(TextView)findViewById(R.id.)  

如何从转换后的代码中删除点?

0 个答案:

没有答案