My installation of Eclipse, while using Java in Android projects, is changing my keyboard's layout when I write any invalid statement. For example:
public class MainActivity extends Activity {
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ImageView iv
}
}
When I try to complete this snippet:
ImageView iv = (ImageView) findViewById(R.id.iv_imagem);
after typing "iv", the character set in my keyboard is screwed, and instead of a QWERTY keyboard (I have Portuguese language defined, and don't have other keyboards in control panel), I end up with an AZERTY keyboard, and the auto-complete shortcut Ctrl + Space is disabled.
In Windows, other applications are is still normally in QWERTY. I thought this could be Windows shifting the keyboard's language, but I disabled those shortcuts. In other applications, everything is normal. I don't know if this is related with JDK or Eclipse, because it also happens in Java projects.
Additional Info: I use Windows 7 and Java JDK, in 64 bits. For Android, I use the ADT Bundle, not the Eclipse plugin. Reinstalled ADT and JDK, with fresh versions, today, with no effects.
Many thanks for any info