几天来,我一直在这里和其他论坛上阅读有关USSD对话框的主题。 (通过USSD,我的意思是其中包含话费详细信息的运营商通知)。

我看过许多解决方案,它们显然适用于android中较低的API级别,但经过大量测试后,发现它们不再起作用,或者至少我无法使它们起作用。

首先,我想知道是否有任何方法可以检测是否已向用户显示ussd对话框。所以我尝试了这个:
Prevent USSD dialog and read USSD response?

尽管我可以在Eclipse的LogCat中看到它们,但是我从日志中获得的所有信息都与我的应用程序相关,但是我的应用程序中没有捕获到与MMI相关的日志!
也许它在比我的版本(4.2.2)更低的Android版本上运行。

然后我决定使用“IExtendedNetworkService”,就像在以下链接和许多其他链接中使用的那样:

https://github.com/alaasalman/ussdinterceptor

Using IExtendedNetworkService to get USSD response in Android

How to read USSD messages in android?

Implementing USSD features. Binding a service to the PhoneUtils without restarting the phone on every update

但对于android 4.2.2及更高版本也没有用。

然后我找到了这个链接:
How to dismiss system dialog in Android?

看起来很有希望,但是即使经过大量测试,我也无法使它正常工作。
我以为也许我做错了什么,还是针对较低的API。

之后,我尝试了许多其他操作,例如模拟主键和后退键,甚至以编程方式进行触摸以隐藏该通知,但是这些都不起作用,因为它们都在我自己的 Activity 下起作用。

有谁知道这些方法中的任何一种或其他方法是否可用于管理或检测android 4.2.2及更高版本中的USSD消息?

我非常感谢您的帮助,
提前致谢。

最佳答案

可以使用无障碍服务。
首先创建一个服务类:

public class USSDService extends AccessibilityService {

public static String TAG = USSDService.class.getSimpleName();

@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
    Log.d(TAG, "onAccessibilityEvent");

    AccessibilityNodeInfo source = event.getSource();
    /* if (event.getEventType() == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && !event.getClassName().equals("android.app.AlertDialog")) { // android.app.AlertDialog is the standard but not for all phones  */
    if (event.getEventType() == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && !String.valueOf(event.getClassName()).contains("AlertDialog")) {
        return;
    }
    if(event.getEventType() == AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED && (source == null || !source.getClassName().equals("android.widget.TextView"))) {
        return;
    }
    if(event.getEventType() == AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED && TextUtils.isEmpty(source.getText())) {
        return;
    }

    List<CharSequence> eventText;

    if(event.getEventType() == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {
        eventText = event.getText();
    } else {
        eventText = Collections.singletonList(source.getText());
    }

    String text = processUSSDText(eventText);

    if( TextUtils.isEmpty(text) ) return;

    // Close dialog
    performGlobalAction(GLOBAL_ACTION_BACK); // This works on 4.1+ only

    Log.d(TAG, text);
    // Handle USSD response here

}

private String processUSSDText(List<CharSequence> eventText) {
    for (CharSequence s : eventText) {
        String text = String.valueOf(s);
        // Return text if text is the expected ussd response
        if( true ) {
            return text;
        }
    }
    return null;
}

@Override
public void onInterrupt() {
}

@Override
protected void onServiceConnected() {
    super.onServiceConnected();
    Log.d(TAG, "onServiceConnected");
    AccessibilityServiceInfo info = new AccessibilityServiceInfo();
    info.flags = AccessibilityServiceInfo.DEFAULT;
    info.packageNames = new String[]{"com.android.phone"};
    info.eventTypes = AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED | AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED;
    info.feedbackType = AccessibilityServiceInfo.FEEDBACK_GENERIC;
    setServiceInfo(info);
}
}

在Android list 中声明
<service android:name=".USSDService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
    <action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data android:name="android.accessibilityservice"
    android:resource="@xml/ussd_service" />

创建一个描述名为ussd_service的可访问性服务的xml文件
<?xml version="1.0" encoding="utf-8"?>
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityEventTypes="typeWindowStateChanged|typeWindowContentChanged"
android:accessibilityFeedbackType="feedbackGeneric"
android:accessibilityFlags="flagDefault"
android:canRetrieveWindowContent="true"
android:description="@string/accessibility_service_description"
android:notificationTimeout="0"
android:packageNames="com.android.phone" />

而已。安装应用程序后,您必须在“辅助功能设置”(“设置”->“辅助功能设置”->“YourAppName”)中启用该服务。

解决方案描述了herehere (russian)

10-08 17:07