我已经搜索了Android手机上拼写检查选项的状态。
我的OnClickListener
方法中有这个代码,我想检查一下它之后的状态:
Intent intent = new Intent();
ComponentName theComponent = new ComponentName("com.android.settings","com.android.settings.Settings$SpellCheckersSettingsActivity" );
intent.setComponent( theComponent );
startActivity(intent);
在这种方法中,我要求用户启用拼写检查,但当它返回应用程序时,我想检查他是否真的这样做了。目前我无法获得componentName状态的信息。我只想要拼写检查器的状态来查看它是启用还是禁用。