我正在尝试编写一个非常基本的 android 可访问性服务,该服务显示一条消息并在发出任何通知时振动。我已经尝试通过自己在手机上发送电子邮件来测试它(我认为这会显示一些通知)。但是我没有看到任何通知。
我的服务代码看起来像
public class NotifierService extends AccessibilityService {
@Override
public void onAccessibilityEvent(AccessibilityEvent evt) {
Toast.makeText(this, "Got event from " + evt.getPackageName(), Toast.LENGTH_SHORT)
.show();
Vibrator v = (Vibrator) getSystemService(VIBRATOR_SERVICE);
v.vibrate(new long[] { 0, 250, 250, 250, 250, 250, 250, 250, 250 }, -1);
}
@Override
public void onInterrupt() { }
}
我已验证该服务正在运行,并且已在手机的辅助功能菜单中启用它。清单看起来像这样(删除了一些不相关的部分):
<uses-permission android:name="android.permission.VIBRATE" />
<application>
<activity
android:name=".MyActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".NotifierService" android:enabled="true" >
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
</service>
</application>
MyActivity
只是一个带有用于启动/停止服务的按钮的活动。