栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

安卓(Android)聊天机器人实现代码分享

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

安卓(Android)聊天机器人实现代码分享

今天看到一个ios写的图灵机器人,直接去官网(http://www.tuling123.com/openapi/)看了下API接入,太简单了,就一个get请求~于是乎,写了一个Android版本的机器人,没什么技术含量,但是挺好玩的~刚好昨晚看了自己喜欢的秦时明月,嘿嘿,小貔貅,就是我的机器人宠物啦~

这是一个安卓智能聊天机器人的源码,采用了仿微信的风格设计,调用的是图灵机器人的API,能够实现智能聊天、讲故事、讲笑话、查天气、查公交等丰富的功能。

先给大家展示效果图:

下面是代码片段,想要源码的小伙伴可在下面留言留下你的邮箱地址

package com.example.android_robot_;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.text.TextUtils;
import android.view.View;
import android.view.Window;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;
import com.example.android_robot_.bean.ChatMessage;
import com.example.android_robot_.bean.ChatMessage.Type;
import com.zhy.utils.HttpUtils;
public class MainActivity extends Activity
{
    
    private ListView mChatView;
    
    private EditText mMsg;
    
    private List mDatas = new ArrayList();
    
    private ChatMessageAdapter mAdapter;
    private Handler mHandler = new Handler()
    {
 public void handleMessage(android.os.Message msg)
 {
     ChatMessage from = (ChatMessage) msg.obj;
     mDatas.add(from);
     mAdapter.notifyDataSetChanged();
     mChatView.setSelection(mDatas.size() - );
 };
    };
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
 super.onCreate(savedInstanceState);
 requestWindowFeature(Window.FEATURE_NO_TITLE);
 setContentView(R.layout.main_chatting);
 initView();
 mAdapter = new ChatMessageAdapter(this, mDatas);
 mChatView.setAdapter(mAdapter);
    }
    private void initView()
    {
 mChatView = (ListView) findViewById(R.id.id_chat_listView);
 mMsg = (EditText) findViewById(R.id.id_chat_msg);
 mDatas.add(new ChatMessage(Type.INPUT, "我是小貅貅,很高兴为您服务"));
    }
    public void sendMessage(View view)
    {
 final String msg = mMsg.getText().toString();
 if (TextUtils.isEmpty(msg))
 {
     Toast.makeText(this, "您还没有填写信息呢...", Toast.LENGTH_SHORT).show();
     return;
 }
 ChatMessage to = new ChatMessage(Type.OUTPUT, msg);
 to.setDate(new Date());
 mDatas.add(to);
 mAdapter.notifyDataSetChanged();
 mChatView.setSelection(mDatas.size() - );
 mMsg.setText("");
 // 关闭软键盘
 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
 // 得到InputMethodManager的实例
 if (imm.isActive())
 {
     // 如果开启
     imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT,
      InputMethodManager.HIDE_NOT_ALWAYS);
     // 关闭软键盘,开启方法相同,这个方法是切换开启与关闭状态的
 }
 new Thread()
 {
     public void run()
     {
  ChatMessage from = null;
  try
  {
      from = HttpUtils.sendMsg(msg);
  } catch (Exception e)
  {
      from = new ChatMessage(Type.INPUT, "服务器挂了呢...");
  }
  Message message = Message.obtain();
  message.obj = from;
  mHandler.sendMessage(message);
     };
 }.start();
    }
}

以上代码就是实现安卓聊天机器人的全部代码,喜欢的朋友直接拿去用,在使用过程中发现有问题请随时和我联系。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/164066.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号