[GUIDE][JB] Remove pop-up window on language change in Xperia keyboard

Search This thread

Heitezy

Senior Member
It's nothing to talk about.
3178698.png

1. Decompile textinput-tng.apk
2. Go to \smali\com\sonyericsson\textinput\uxp\view\settings\
3. Open LanguageToggleVisualisation$Factory.smali
4. Search these lines
Code:
.line 43
const-string v0, "language-toggle-visualisation"

const-string v1, "[COLOR="Red"]true[/COLOR]"

invoke-virtual {p0, v0, v1, v2, v2}, Lcom/sonyericsson/textinput/uxp/view/settings/LanguageToggleVisualisation$Factory;->defineParameter(Ljava/lang/String;Ljava/lang/String;ZZ)V

.line 44
return-void
.end method
5. Change "true" to "false" like here
Code:
.line 43
const-string v0, "language-toggle-visualisation"

const-string v1, "[COLOR="Blue"]false[/COLOR]"

invoke-virtual {p0, v0, v1, v2, v2}, Lcom/sonyericsson/textinput/uxp/view/settings/LanguageToggleVisualisation$Factory;->defineParameter(Ljava/lang/String;Ljava/lang/String;ZZ)V

.line 44
return-void
.end method
6. Recompile your apk and push it in your system/app with permissions bla-bla-bla.
7. Enjoy:)

In attachment I provide flashable zip. May try.

All credits to ivan-68. Original post on 4pda
I just share it here.
 

Attachments

  • Keyboard_no_popup.zip
    4.7 MB · Views: 16