Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找为 android 开发自定义 IME/softkeybard。我在这里看到了一些关于 SO 的信息,但是一些链接像这个答案一样被破坏: 如何为 Android 开发软键盘?
有谁知道自定义 IME/软键盘或教程的任何示例以供参考?
发生这种情况是因为您尝试运行的代码只能在具有 api 版本 15 或更高版本的设备上成功执行。
具有较低 api 版本的设备没有 android.preference.preferenceFragment 类。
您的清单文件中也没有任何活动。实际上,系统正在尝试查找扩展 PreferenceFragment 的 ImePreference 活动,因为该活动不可用,因此无法找到导致崩溃的活动。