20

从一年开始,我一直在研究物联网产品,附加的应用程序运行良好。现在我无法在更高版本的android中以编程方式接受调用。功能对产品来说非常重要。非常感谢任何帮助。

在2016 年 11 月安全补丁更新之前,Runtime.getRunTime.exec("Command")以编程方式接听电话工作正常。

Runtime.getRuntime().exec("input keyevent " +Integer.toString(KeyEvent.KEYCODE_HEADSETHOOK));

如何在 Nougat 版本的 android 中实现这一点。

寻找任何类型的黑客。

我已经为增强功能打开了一个线程。

https://code.google.com/p/android/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Status%20Priority%20Owner%20Summary%20Stars%20Reporter%20Opened&groupby=&sort=&id=231938

注意*如果你们中的任何一个人面临同样的问题,那么请请求进入Android Dev Team它并提供获得用户运行时许可的条款。按照上面提到的 URL 请求。

4

4 回答 4

11

由于我也在研究物联网产品,这是我面临的最大问题之一,但经过一些研究,我想我已经找到了解决这个问题的方法,或者你可以说一个简单的 hack。我已经在几个版本的设备上测试了这个 hack,发现大多数设备都有响应。只有三星设备没有响应,一些华为设备和一些 Oppo 设备也没有响应。(我还在寻找这些设备的东西)。

我注意到 Android 提供了访问通知的一项功能。您可以使用NotificationListenerService来读取通知并对它们执行一些操作。它提供了一些覆盖方法:

 onNotificationPosted()
    onNotificationRemoved()
    getActiveNotifications()

... ETC

这是一个代码:创建一个扩展 NotificationListenerService 的服务

 class NLService extends NotificationListenerService {

     @Override
     public void onNotificationPosted(StatusBarNotification sbn) {
       ....
     }

     @Override
     public void onNotificationRemoved(StatusBarNotification sbn) {
       ....
     }

在 AndroidMenifest 中,将此服务添加为:

 <service
        android:name=".NLService"
        android:label="@string/app_name"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
        <intent-filter>
            <action 
android:name="android.service.notification.NotificationListenerService" />
        </intent-filter>
    </service>

这将允许您的应用程序读取收到的任何通知。

现在,这里是主要代码:

在 onNotificationPosted(StatusBarNotification sbn) 添加此代码:

 @Override
    public void onNotificationPosted(StatusBarNotification sbn) {
        try {
            if (sbn.getNotification().actions != null) {
                for (Notification.Action action : sbn.getNotification().actions) 
                  {
                    Log.e(TAG, "" + action.title);
                    if (action.title.toString().equalsIgnoreCase("Answer")) {
                        Log.e(TAG, "" + true);
                        PendingIntent intent = action.actionIntent;

                        try {
                            intent.send();
                        } catch (PendingIntent.CanceledException e) {
                            e.printStackTrace();
                        }
                    }
                }
            }
          } catch (Exception e) {
              e.printStackTrace();
          }
     }

而已!

一切准备就绪,运行应用程序和除三星以外的设备,无论哪个显示来电通知,带有接听和拒绝/拒绝操作按钮,都将允许您接听电话。

要打开通知访问设置并允许您的应用程序读取通知,请使用:

 Intent intent = new 
    Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS");
        startActivity(intent); 

只需为此创建一个 POC,然后让我知道它是如何工作的。

如果这有帮助,请标记我的答案。

此外,如果您可以针对三星设备提供相同的解决方案,请更新。

谢谢

于 2017-04-06T12:09:44.450 回答
1

这是一种黑客行为,您可以使用无障碍服务接听电话。要启用无障碍服务,您必须在设置 - 无障碍 - 您的服务中启用您的服务。

首先,将 typeWindowContentChanged 添加到 accessibilityEventTypes。

<accessibility-service
     android:accessibilityEventTypes="typeViewClicked|typeViewFocused|typeViewScrolled|typeWindowContentChanged|typeWindowStateChanged"
     android:packageNames="com.example.android.myFirstApp, com.example.android.mySecondApp"
     android:accessibilityFeedbackType="feedbackSpoken"
     android:notificationTimeout="100"
     android:settingsActivity="com.example.android.apis.accessibility.TestBackActivity"
     android:canRetrieveWindowContent="true"
/>

并对事件或“显示的文本”或“内容描述”做一些事情。

@Override
public void onAccessibilityEvent(AccessibilityEvent event) {

    // Do something with Click or Focused event
    final int eventType = event.getEventType();
    String eventText = null;
    switch(eventType) {
        case AccessibilityEvent.TYPE_VIEW_CLICKED:
            eventText = "Focused: ";
            break;
        case AccessibilityEvent.TYPE_VIEW_FOCUSED:
            eventText = "Focused: ";
            break;
    }
    eventText = eventText + event.getContentDescription();


    // Traverse all items in screen. 
    // Do something with text.

    AccessibilityNodeInfo info = getRootInActiveWindow();

    int index;
    int count = info.getChildCount();
    AccessibilityNodeInfo child;

    for (index = 0; index < count; index++) {
        child = info.getChild(index);
        if (child.getText() != null)
            Log.d(TAG, "text: " + child.getText().toString() + " " + child.getContentDescription());

        // perform Click
        //if (child.isClickable());
            //child.performAction(AccessibilityNodeInfo.ACTION_CLICK);
    }
}

是的,我知道这不是解决您问题的好方法。这是一种黑客行为。

于 2017-02-21T10:12:00.650 回答
0

要使用按钮接听电话,请在检测到来电时设置一个标志:

 if(state==TelephonyManager.CALL_STATE_RINGING){
           shouldAnswerCallViaNotification = true;
        } else {
            shouldAnswerCallViaNotification = false;
        }

现在,在你的 NSLogService 类中创建一个列表,

static ArrayList<StatusBarNotification> statusBarNotifications;

并在您的 onNotificationPosted() 中将 StatusBarNotification 添加到列表中,

   @Override
public void onNotificationPosted(StatusBarNotification sbn) {

    if (HomeScreen.shouldAnswerCallViaNotification) {
        if (statusBarNotifications == null) {
            updateNotificationList();
        }
       statusBarNotifications.add(sbn);

    } else {
        updateNotificationList();
    }

}
 public static ArrayList<StatusBarNotification> getAllNotifications() {
    return statusBarNotifications;
}

public static void updateNotificationList() {

    if (statusBarNotifications != null)
        statusBarNotifications = null;
    statusBarNotifications = new ArrayList<StatusBarNotification>();
}

在您的主屏幕中,单击按钮,调用 performNotificationOperation(NLService.getAllNotifications());

这是此方法的定义:

 private void performNotificationOperation(ArrayList<StatusBarNotification> activeNotifications) {

    if (activeNotifications.size()> 0) {
        main_Loop:
        for (StatusBarNotification notification : activeNotifications) {
            try {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
                    if (notification.getNotification().actions != null) {
                        for (Notification.Action action : notification.getNotification().actions) {
                            //            Log.e(TAG, "" + action);

                            Log.e(TAG, "" + action.title);
                            if (action.title.toString().equalsIgnoreCase("Answer")) {
                                Log.e(TAG, "" + true);
                                PendingIntent intent = action.actionIntent;

                                try {
                                    intent.send();
                                } catch (PendingIntent.CanceledException e) {
                                    e.printStackTrace();
                                }
                                break main_Loop;
                            }


                        }
                    }
                }
            } catch (Exception e) {
                e.printStackTrace();
            }

        }
    }
    try {
        NLService.updateNotificationList();
    } catch (Exception e) {
        e.printStackTrace();
    }

}
于 2017-06-29T09:41:52.663 回答
0

根据“ Vishal Sharma ”的回答,我们可以动态获取动作按钮标题,以支持其他语言:

  @Override
  public void onNotificationPosted(StatusBarNotification sbn) {
    try {
      if (sbn.getNotification().actions != null) {
        Notification.Action[] notificationAction=sbn.getNotification().actions;
        //Log.e(G.TAG, "" +notificationAction  + " =>"+notificationAction.length);
           String rejectTitle=""+notificationAction[0].title;
           String acceptTitle=""+notificationAction[1].title;

        for (Notification.Action action : notificationAction){
          if (action.title.toString().equalsIgnoreCase(acceptTitle)) {
            PendingIntent intent = action.actionIntent;
            try {
              intent.send();
            } catch (PendingIntent.CanceledException e) {
              e.printStackTrace();
            }
          }
        }


      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
于 2018-07-02T10:17:13.120 回答