当前位置: 首页 > 知识库问答 >
问题:

android环境下USSD对话框管理的一种新方法

濮阳鸿卓
2023-03-14

首先,我想知道是否有任何方法来检测ussd对话框是否已经显示给用户。所以我试着这样做:阻止USSD对话框并读取USSD响应?

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

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

但对于Android4.2.2及以上版本来说,它也是无用的。

然后我找到了这个链接:如何在Android中取消系统对话框?

它看起来很有希望,但我无法使它工作,即使在许多测试后。我想也许是我做错了什么,或者也是为了更低的API。

共有1个答案

符渊
2023-03-14

使用可访问性服务是可能的。首先创建服务类:

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

就是这样。安装应用程序后,必须在辅助功能设置(设置->辅助功能设置->YourAppName)中启用该服务。

这里和这里描述的解决方案(俄文)。

 类似资料:
  • 此对话框允许管理 WinRAR 界面主题。 按下“选择”来激活当前光标下的主题。使用“添加”按钮来安装新的主题文件。“删除”从列表中移除光标下的主题并从磁盘上删除它的所有文件,所以您以后不能在选择它。 “应用到压缩文件图标”是对所有主题的全局选项。如果它关闭,主题仅修改 WinRAR 的图像,而不会改变 RAR 、ZIP和其它压缩文件图标。如果它是打开的, WinRAR 图像和压缩文件图标都被修改

  • 本文向大家介绍android几种不同对话框的实现方式,包括了android几种不同对话框的实现方式的使用技巧和注意事项,需要的朋友参考一下 app中肯定是少不了与用户交互的各种dialog,下面给大家介绍几种提示框的提示。 一般创建一个对话框需要经过以下几步:   1、创建AlertDialog.Builder对象。   2、调用AlertDialog.Builder的setTitle()或者se

  • 本文向大家介绍8种android 对话框(Dialog)使用方法详解,包括了8种android 对话框(Dialog)使用方法详解的使用技巧和注意事项,需要的朋友参考一下 本文汇总了android 8种对话框(Dialog)使用方法,分享给大家供大家参考,具体内容如下 1.写在前面 Android提供了丰富的Dialog函数,本文介绍最常用的8种对话框的使用方法,包括普通(包含提示消息和按钮)、列

  • 我想知道有没有一种方法可以在显示系统对话框时获取事件(例如任务管理器、关闭警报、...)。 我可以通过下面的意图关闭我的活动中的系统对话框 但是在我的代码中,我需要知道屏幕上显示了一个系统对话框(它们可以是任务管理器/关闭对话框……),这样我就可以调用上面的代码来关闭它。 我搜索了意图过滤器没有找到。

  • 本文向大家介绍Android AlertDialog实现分享对话框/退出对话框/下载对话框,包括了Android AlertDialog实现分享对话框/退出对话框/下载对话框的使用技巧和注意事项,需要的朋友参考一下 一.摘要 弹窗通常用于提示用户进行某种操作,比如:点击分享按钮,弹窗分享对话框;双击返回按钮,弹窗退出对话框;下载文件,提示下载对话框等等,分享对话框/退出对话框/下载对话框,都可以直