4

我正在尝试编写一个非常基本的 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只是一个带有用于启动/停止服务的按钮的活动。

4

3 回答 3

4

我在服务标签内添加了一个元数据元素

<meta-data android:name="android.accessibilityservice" android:resource="@xml/accessibilityservice" />

在我的xml资源文件中

<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
                       android:accessibilityEventTypes="typeNotificationStateChanged"
                       android:accessibilityFeedbackType="feedbackAllMask"
                       android:notificationTimeout="100" />
于 2013-01-26T18:14:02.427 回答
1

无障碍服务对于您的目的来说是多余的,您应该使用NotificationListenerService。NotificationListenerService 更容易实现,对用户来说更安全(出于隐私原因)。

于 2015-12-09T19:56:04.727 回答
0

配置可访问性服务的另一种方法是覆盖from java 代码的OnServiceConnected()方法。AccessibilityService

@Override
  protected void onServiceConnected() {
    AccessibilityServiceInfo info = getServiceInfo();
    info.packageNames = new String[]
        {
            "com.packagename1","com.packagename2"
        };
    info.eventTypes = AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED;

    this.setServiceInfo(info);
  }

参考

于 2016-06-22T09:58:30.610 回答