cybermatatu / hackerskeyboard

Automatically exported from code.google.com/p/hackerskeyboard
0 stars 0 forks source link

4-row layout dead keys. #344

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I'm currently working on a 4-row layout for Spanish. Really, the only special 
things about it are the "ñ" key to the right of l (already on the Spanish 
layout) and an acute accent key between the spacebar and the period key. The 
problem is, when using a standard Spanish PC keyboard, to type an accented 
letter, "á", for instance, one would first press the acute key, and then the 
letter "a". This is the behavior in the current 5-row Spanish keyboard, but for 
some reason, in the 4-row layout I created, the acute gets applied to the 
letter *before* it.

This is the code for the key I added:

        <Key
            android:keyLabel="´"
            android:keyOutputText="&#x301;"
            android:isModifier="true" />

Original issue reported on code.google.com by unac...@gmail.com on 15 Mar 2013 at 7:48