Fix the LatinIME on devices with 240dpi.
The LatinIME now registers support for 120, 160, and 240 dpi so that it isn't run in compatibility mode. There are currently some issues preventing it from running properly in compatibility mode.
This commit is contained in:
parent
230cd6f7f2
commit
43d34daf3f
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@
|
|||
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
|
||||
|
||||
<application android:label="@string/english_ime_name">
|
||||
<supports-density android:density="120" />
|
||||
<supports-density android:density="160" />
|
||||
<supports-density android:density="240" />
|
||||
|
||||
<service android:name="LatinIME"
|
||||
android:label="@string/english_ime_name"
|
||||
android:permission="android.permission.BIND_INPUT_METHOD">
|
||||
|
|
Loading…
Reference in a new issue