一种在android中管理USSD对话框的新方法

时间:2014-07-21 22:29:36

标签: android ussd

我已经在这里和其他论坛上阅读了关于USSD对话的线程了几天。 (USSD是指运营商的通知,其中包含通话费用详情)。

我已经看到很多解决方案显然适用于Android中较低的API级别,但经过大量测试后,认为它们不再起作用,或者至少我无法让它们起作用。

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

但我从日志中得到的所有东西都与我的应用程序有关,虽然我可以在Eclipse的LogCat中看到它们但是我的应用程序中没有捕获到MMI相关的日志! 也许它的安卓版本低于我的版本(4.2.2)。

然后我决定使用“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。

之后我尝试了很多其他的东西,比如模拟主键和后退键,甚至以编程方式触摸隐藏该通知,但由于它们都在我自己的活动下工作,所以没有一个工作。

有没有人知道这些方法或其他方法是否适用于管理甚至检测Android 4.2.2及更高版本中的USSD消息?

我非常感谢任何帮助, 提前谢谢。

2 个答案:

答案 0 :(得分:8)

可以使用辅助功能服务。 首先创建一个服务类:

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清单中声明它

<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" />

那就是它。安装应用程序后,您必须在辅助功能设置(设置 - >可访问性设置 - &gt; YourAppName)中启用该服务。

解决方案描述了herehere (russian)

答案 1 :(得分:0)

不幸的是没办法。

我们一直在搜索该命令也是这个问题的解决方案,但是如果它只是通过解析手机中的日志来获取信息,并不能保证所有设备100%的工作。< / p>

因此,我们能够与我们国家的移动运营商达成协议(我们只有3家移动运营商),他们为我们提供了API以获取电话号码的余额,但此方法仅适用本地。