Dear Android Developers,
I would like to develop a soft keyboard for android, which I can use with any app that requires text input.
I added the InputMethod
intent-filter to my manifest as such:
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
I also added the BIND_INPUT_METHOD
permissions to my application.
What I can't find how to do is how to deploy the soft keyboard to my device. Can anybody tell me how to do this?
Since my soft keyboard has no Activity, I cannot simply deploy it as an Android application. Then how do I test my keyboard?
Thanks in advance!