AccessibilityService获取所选文本

时间:2017-12-10 19:44:59

标签: java android accessibilityservice

我正在创建AccesibilityService,它需要在其他应用程序中获取所选文本。

我的服务xml资源如下所示:

<?xml version="1.0" encoding="utf-8"?>
<accessibility-service
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:accessibilityEventTypes="typeViewTextSelectionChanged"
    android:accessibilityFeedbackType="feedbackSpoken"
    android:canRetrieveWindowContent="true"
    android:notificationTimeout="100"
    android:settingsActivity="com.example.android.apis.accessibility.TestBackActivity"/>

和java代码

@Override
public void onServiceConnected(){

    AccessibilityServiceInfo info = new AccessibilityServiceInfo();
    info.eventTypes = AccessibilityEvent.TYPE_VIEW_TEXT_SELECTION_CHANGED;
    info.feedbackType = AccessibilityServiceInfo.FEEDBACK_SPOKEN;
    info.notificationTimeout = 100;
    this.setServiceInfo(info);
    Toast.makeText(this,"Connected",Toast.LENGTH_LONG).show();
}

@Override
public void onAccessibilityEvent(AccessibilityEvent event)
{
    Toast.makeText(this,"Got event",Toast.LENGTH_LONG).show();

    final int selectBegin = event.getSource().getTextSelectionStart();
    final int selectEnd = event.getSource().getTextSelectionEnd();
    if (selectBegin == selectEnd)
    {
        return;
    }
    String text = event.getText().toString().substring(selectBegin,selectEnd + 1);
the rest of code...
}

@Override
public void onInterrupt()
{
    return;
}

@Override
public void onDestroy()
{
    super.onDestroy();
    Toast.makeText(this,"Stopped",Toast.LENGTH_LONG).show();
}

这应该在选择发生后从任何其他应用程序获取文本。

它仅适用于我的应用程序,我使用TextView进行活动,其中包含随机文本,在我选择它之后,事件被正确抛出。但在进入任何其他应用程序后,例如chrome,一些随机的pdf阅读器应用程序,没有抛出任何事件,至少不是我正在听的这个。

@Edit 从xml中删除了这一行。现在抛出事件,但选择的索引是-1和-1

android:packageNames="com.example.jakubjab.getselectedtext"

1 个答案:

答案 0 :(得分:0)

至少您的XML配置已关闭:

android:packageNames="com.example.jakubjab.getselectedtext"

您需要省略此行。 packageNames参数限制从中获取事件的包。没有设置从每个包中获取事件的结果。

鉴于您对问题的解释,我想这会解决您的问题。至少,这是一个问题,如果它没有正确解决,您可能需要提供更多详细信息。