How to add preference of Custom Input method to Android Settings app?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-28 12:41:45

I've found it myself:

in XML of input method you need to put android:settingsActivity tag with link to your PreferenceActivity class: Example

Here is an example: set android:settingsActivity in your input-method xml declaration.

<?xml version="1.0" encoding="utf-8"?>
<input-method
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:settingsActivity="com.justes.yogabook.holo_keyboard.wrapper.SettingsActivity">
    <subtype
        android:label="@string/yogabook_holo_keyboard_subtype_label"
        android:imeSubtypeLocale="en_US"
        android:imeSubtypeMode="keyboard" />
</input-method>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!