本文是使用Android辅助功能AccessibilityService实现微信自动聊天demo;
只是为了跟深入的了解Android辅助功能, 提高自身的动手能力。 请勿用于商用,或非法用途。
动手前,基本的准备要求:
聊天机器人app demo,去操作其他App,实现自动化操作,必须要懂的一些技术点;
1.熟练使用AccessibilityService、AccessibilityNodeInfo等一系列辅助类。
2.会使用uiautomatorviewer.bat 找控件id或text。
第一点,网上应该不少吧,你不懂可以去百度。或参考上一篇文章:Android辅助功能【Accessibility】入门简介及使用。
第二点,使用android sdk自带的uiautomatorviewer.bat, 位于%ANDROID_SDK_HOME%\tools\bin; 双击打开,如下图界面;
你可以从这里,获知很多有价值的东西:
比如APP包名,packageName;
当前某一个控件的ID,resource-id;
当前控件是否可点击,clickable;
当前控件是否可滑动,srollable;
此处举个例子:
既然,从这儿取到的控件id,那么如何在代码中如何通过资源id,请看如下代码:
- public class AutoChatService extends AccessibilityService {
-
- //AccessibilityEvent是一个事件类,里面封装了许多字段,表示各种不同的事件(通知、窗口内容)
- @Override
- public void onAccessibilityEvent(AccessibilityEvent event) {
- String packageName = event.getPackageName().toString();
- String className = event.getClassName().toString();
- LogUtils.i("event from:", packageName, className);
-
- AccessibilityNodeInfo root = this.getRootInActiveWindow();
- //先获取tabhost[微信,通讯录,发现,我], 微信的右上角是否有红色小圈,微信上的控件
- List<AccessibilityNodeInfo> wechatBadgeList = root.findAccessibilityNodeInfosByViewId("com.tencent.mm:id/j0_");
- }
- }
要自动操作,必须要有自动操作权限
在xml文件中注册service
- <service
- android:name=".AutoChatService"
- android:enabled="true"
- android:exported="true"
- android:label="@string/app_name"
- 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/accessibility_service" />
- </service>
在res 下新建xml包,建xml文件 accessibility_service。
- <?xml version="1.0" encoding="utf-8"?>
- <accessibility-service
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:accessibilityEventTypes="typeAllMask"
- android:accessibilityFeedbackType="feedbackAllMask"
- android:accessibilityFlags="flagDefault"
- android:canRetrieveWindowContent="true"
- android:description="@string/accessibility_description"
- android:notificationTimeout="3000"
- android:packageNames="com.tencent.mm,com.tencent.mobileqq"
- />
现在,我假设,你已经有足够的基础,做辅助功能操作了。就可以对接自动聊天api,例如:
本案例使用图灵api接口:
- public class ChatRobot {
-
- public ChatRobot() {
- }
-
- public void feedWithTuringapi(String text, ChatRobot.ResponseHandler handler) {
- //异步调用聊天Api接口;
- AsyncHttpClient client = new AsyncHttpClient();
-
- RequestParams params = new RequestParams();
- params.put("key", "xxx");
- params.put("secret", "xxx");
- params.put("info", text);
- client.post("http://www.tuling123.com/openapi/api", params, new JsonHttpResponseHandler() {
-
- public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
- String text = null;
- try {
- text = response.getString("text");
- } catch (Exception e) {}
-
- handler.onFeedBack(text);
- }
-
- public void onFailure(int statusCode, Header[] headers, Throwable throwable, JSONObject errorResponse) {
- handler.onFeedBack(Emoj.getEmoji("调皮") + text + " <- my replay " + Emoj.getEmoji("微笑"));
- }
- });
- }
-
- public interface ResponseHandler {
- //机器人返回内容
- void onFeedBack(String msg);
- }
- }
网络请求需要加网络权限昂
好了,你已经获取到聊天回复内容了。利用accesibilityNodeInfo的复制粘贴在微信app中自动回复消息吧。
项目微信自动聊天机器人截图
附上源码demo下载地址,https://download.csdn.net/download/cattong/87064455