软件编程
位置:首页>> 软件编程>> Android编程>> 安卓(Android)聊天机器人实现代码分享

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

作者:mrr  发布时间:2022-12-29 05:57:31 

标签:安卓,聊天,机器人

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

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

先给大家展示效果图:

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

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


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
{
   /**
    * 展示消息的listview
    */
   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() - );
       };
   };
   <a href="http://home.cto.com/index.php?s=/space/" target="_blank">@Override</a>
   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();
   }
}

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

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com