问答图灵机器人API实例

问答机器人API文档:https://www.juhe.cn/docs/api/id/112
先上图:


说下大致实现的步骤:
1、首先使用了聚合数据的sdk,这样免费使用的数目可以多一些
2、使用gson来解析json数据
3、使用ListView来显示数据

那,先将布局贴上来
数据部分 机器人和人布局类似 只粘一个

<?xml version="1.0" encoding="utf-8"?>    
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    android:orientation="vertical" >    
    
    <TextView    
        android:id="@+id/robot_time"    
        android:layout_width="wrap_content"    
        android:layout_height="wrap_content"    
        android:layout_gravity="center"    
        android:textColor="#cccccc"    
        android:gravity="center_horizontal"    
        android:text="2015-8-23 17:37:23" />    
    
    <LinearLayout    
        android:layout_width="wrap_content"    
        android:layout_height="wrap_content"    
        android:orientation="horizontal" >    
    
        <LinearLayout    
            android:layout_width="wrap_content"    
            android:layout_height="wrap_content"    
            android:orientation="vertical" >    
    
            <ImageView    
                android:layout_width="50dp"    
                android:layout_height="50dp"    
                android:src="@drawable/icon" />    
    
            <TextView    
                android:layout_width="wrap_content"    
                android:layout_height="wrap_content"    
                android:layout_gravity="center"    
                android:gravity="center_horizontal"    
                android:text="小桂子"    
                android:textSize="12sp" />    
        </LinearLayout>    
    
        <TextView    
            android:id="@+id/robot_msg"    
            android:layout_width="wrap_content"    
            android:layout_height="wrap_content"    
            android:layout_marginLeft="5dp"    
            android:background="@drawable/chatfrom_bg_normal"    
            android:gravity="center"    
            android:layout_gravity="bottom"    
            android:text="你好,我是小桂子" />    
    </LinearLayout>    
    
</LinearLayout>    

然后是主布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    xmlns:tools="http://schemas.android.com/tools"    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    tools:context="com.example.juheapi.MainActivity" >    
    
    <RelativeLayout    
        android:id="@+id/titleBar"    
        android:layout_width="fill_parent"    
        android:layout_height="50dp"    
        android:layout_alignParentTop="true"    
        android:background="@drawable/title_bar" >    
    
        <TextView    
            android:layout_width="wrap_content"    
            android:layout_height="wrap_content"    
            android:layout_centerInParent="true"    
            android:text="小桂子 贱贱哒"    
            android:textColor="#eeeeee"    
            android:textStyle="bold" />    
    </RelativeLayout>    
    
    <ListView    
        android:id="@+id/listView"    
        android:layout_width="fill_parent"    
        android:layout_height="fill_parent"    
        android:layout_above="@+id/buttom"    
        android:layout_below="@+id/titleBar"    
        android:divider="@null"    
        android:dividerHeight="5dp"    
        android:fastScrollEnabled="true"    
        android:scrollbarStyle="insideInset"    
        android:transcriptMode="normal" >    
    </ListView>    
    
    <RelativeLayout    
        android:id="@+id/buttom"    
        android:layout_width="fill_parent"    
        android:layout_height="50dp"    
        android:layout_alignParentBottom="true"    
        android:background="@drawable/bottom_bar" >    
    
        <Button    
            android:id="@+id/send_but"    
            android:layout_width="wrap_content"    
            android:layout_height="40dp"    
            android:layout_alignParentRight="true"    
            android:layout_centerInParent="true"    
            android:layout_marginLeft="5dp"    
            android:layout_marginRight="5dp"    
            android:background="@drawable/but_send_bg"    
            android:text="发 送" />    
    
        <EditText    
            android:id="@+id/send_msg"    
            android:layout_width="fill_parent"    
            android:layout_height="40dp"    
            android:layout_centerInParent="true"    
            android:layout_marginLeft="5dp"    
            android:layout_toLeftOf="@+id/send_but"    
            android:background="@drawable/login_edit_normal"    
            android:hint="你想说点什么?"    
            android:typeface="monospace" />    
    </RelativeLayout>    
    
</RelativeLayout>    

发送按钮的xml文件:

<?xml version="1.0" encoding="utf-8"?>    
<selector xmlns:android="http://schemas.android.com/apk/res/android">    
    
    <item android:drawable="@drawable/send_btn_pressed" android:state_pressed="true"></item>    
    <item android:drawable="@drawable/send_btn_normal"></item>    
    
</selector>    

这样布局 就算搭建好了
先说说 聚合数据 SDK的使用吧 地址:https://www.juhe.cn/juhesdk
下载完之后 需要导入jar包 新建application初始化sdk 以及manifest的配置, 里面有详细教程
需要注意的的是 ip 的值 并不像教程上说的那样 而是需要加上完整的 URL 、info 和 KEY

Parameters params = new Parameters();    
        params.add("ip", URL + msg + KEY);    
        params.add("dtype", "json");    

下面是访问数据和解析数据的实现
需要用到gson

package com.util;    
    
import java.util.Date;    
    
import android.content.Context;    
import android.os.Handler;    
import android.os.Message;    
    
import com.bean.GetResult;    
import com.bean.SetChatMessage;    
import com.bean.SetChatMessage.Type;    
import com.google.gson.Gson;    
import com.thinkland.sdk.android.DataCallBack;    
import com.thinkland.sdk.android.JuheData;    
import com.thinkland.sdk.android.Parameters;    
    
public class RequestHttp {    
    private static final String URL = "http://op.juhe.cn/robot/index?info=";    
    private static final String KEY = "&key=5d0a9e4aad4c9b11f53cc**********";    
    private Context context;    
    private Handler handle;    
    
    public RequestHttp(Context context, Handler handle) {    
        this.context = context;    
        this.handle = handle;    
    }    
    
    public  void requestHttp(String msg) {    
        Parameters params = new Parameters();    
        params.add("ip", URL + msg + KEY);    
        params.add("dtype", "json");    
    
        JuheData.executeWithAPI(context, 112, URL + msg + KEY, JuheData.GET,    
                params, new DataCallBack() {     
    
                    public void onSuccess(int statusCode, String responseString) {    
                        // TODO Auto-generated method stub    
                        SetChatMessage chat = new SetChatMessage();    
                        Gson gson = new Gson();    
                        GetResult value = gson.fromJson(responseString,    
                                GetResult.class);    
                        chat.setMsg(value.getResult().getText());    
                        chat.setDate(new Date());    
                        chat.setType(Type.INCOME);    
                        Message mesg = Message.obtain(handle);    
                        mesg.obj = chat;    
                        mesg.sendToTarget();    
                    }    
    
                    public void onFinish() {    
                    }    
    
                    public void onFailure(int statusCode,    
                            String responseString, Throwable throwable) {    
                        SetChatMessage chat = new SetChatMessage();    
                        chat.setMsg("服务器忙,请稍候。。。");    
                        chat.setDate(new Date());    
                        chat.setType(Type.INCOME);    
                        Message mesg = Message.obtain(handle);    
                        mesg.obj = chat;    
                        mesg.sendToTarget();    
                    }    
    
                });    
    
    }    
}    

上面的gson解析 需要JSON数据映射成一个对象

package com.bean;    
    
public class GetResult {    
    private Result result;    
    
    public Result getResult() {    
        return result;    
    }    
    
    public void setResult(Result result) {    
        this.result = result;    
    }    
    
    public class Result {    
        private int code;    
        private String text;    
    
        public int getCode() {    
            return code;    
        }    
    
        public void setCode(int code) {    
            this.code = code;    
        }    
    
        public String getText() {    
            return text;    
        }    
    
        public void setText(String text) {    
            this.text = text;    
        }    
    }    
}    

上面是两个类嵌套的 因为数据格式是:{ x, y{z,u}}
需要拿到z的值,就必须这样做,注意“text”和“code”的是和数据z、u对应的 不能随意设定

还需要对数据进行封装:

package com.bean;    
    
import java.util.Date;    
    
public class SetChatMessage {    
    private String name;    
    private String msg;    
    private Date date;    
    private Type type;    
        
    public enum Type{    
        INCOME,OUTCOME    
    }    
        
    public SetChatMessage(){}    
        
    public SetChatMessage(String msg,Date date,Type type){    
        this.msg=msg;    
        this.date=date;    
        this.type=type;    
    }    
    
        
    public String getName() {    
        return name;    
    }    
    
    public void setName(String name) {    
        this.name = name;    
    }    
    
    public String getMsg() {    
        return msg;    
    }    
    
    public void setMsg(String msg) {    
        this.msg = msg;    
    }    
    
    public Date getDate() {    
        return date;    
    }    
    
    public void setDate(Date date) {    
        this.date = date;    
    }    
    
    public Type getType() {    
        return type;    
    }    
    
    public void setType(Type type) {    
        this.type = type;    
    }    
        
        
}    

还需要给Listview写个适配器:

package com.example.juheapi;    
    
import java.text.SimpleDateFormat;    
import java.util.List;    
import java.util.Locale;    
    
import com.bean.SetChatMessage;    
import com.bean.SetChatMessage.Type;    
import com.example.juheapi.R.id;    
    
import android.content.Context;    
import android.view.LayoutInflater;    
import android.view.View;    
import android.view.ViewGroup;    
import android.widget.BaseAdapter;    
import android.widget.TextView;    
    
public class MyAdapter extends BaseAdapter {    
    private List<SetChatMessage> dataList;    
    private LayoutInflater mInflater;    
    
    public MyAdapter(Context context, List<SetChatMessage> dataList) {    
        this.dataList = dataList;    
        mInflater = LayoutInflater.from(context);    
    }    
    
    public int getCount() {    
        return dataList.size();    
    }    
    
    public Object getItem(int position) {    
        return dataList.get(position);    
    }    
    
    public long getItemId(int position) {    
        return position;    
    }    
    
    public int getItemViewType(int position) {    
        SetChatMessage chatMsg = dataList.get(position);    
        if (chatMsg.getType() == Type.INCOME) {    
            return 0;    
        }    
        return 1;    
    }    
    
    public int getViewTypeCount() {    
        return 2;    
    }    
    
    public View getView(int position, View convertView, ViewGroup parent) {    
        SetChatMessage chatMsg = dataList.get(position);    
        ViewHolder viewHolder;    
        if (convertView == null) {    
            if (getItemViewType(position) == 0) {    
                convertView = mInflater.inflate(R.layout.item_robot_msg,    
                        parent, false);    
                viewHolder = new ViewHolder();    
                viewHolder.msgData = (TextView) convertView    
                        .findViewById(id.robot_msg);    
                viewHolder.timeData = (TextView) convertView    
                        .findViewById(id.robot_time);    
            } else {    
                convertView = mInflater.inflate(R.layout.item_host_msg, parent,    
                        false);    
                viewHolder = new ViewHolder();    
                viewHolder.msgData = (TextView) convertView    
                        .findViewById(id.host_msg);    
                viewHolder.timeData = (TextView) convertView    
                        .findViewById(id.host_time);    
            }    
            convertView.setTag(viewHolder);    
        } else {    
                
            viewHolder = (ViewHolder) convertView.getTag();    
                
        }    
        viewHolder.msgData.setText(chatMsg.getMsg());    
        SimpleDateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss",Locale.CHINA);    
        viewHolder.timeData.setText(dateFormat.format(chatMsg.getDate()));    
            
        return convertView;    
    }    
    
    private class ViewHolder {    
        private TextView timeData;    
        private TextView msgData;    
    }    
    
}    

说一下适配器:
 1、因为有两种不同的view 所以需要复写 getItemViewType(int position) 和 getViewTypeCount();
 2、使用ViewHolder 对性能进行优化,减少一些不必要的重复操作

main:

package com.example.juheapi;    
    
import java.util.ArrayList;    
import java.util.Date;    
import java.util.List;    
    
import com.bean.SetChatMessage;    
import com.bean.SetChatMessage.Type;    
import com.example.juheapi.R.id;    
import com.util.RequestHttp;    
    
import android.app.Activity;    
import android.os.Bundle;    
import android.os.Handler;    
import android.os.Message;    
import android.text.TextUtils;    
import android.view.View;    
import android.view.View.OnClickListener;    
import android.view.Window;    
import android.widget.Button;    
import android.widget.EditText;    
import android.widget.ListView;    
import android.widget.Toast;    
    
public class MainActivity extends Activity {    
    private List<SetChatMessage> dataList = new ArrayList<SetChatMessage>();    
    private MyAdapter myAdapter;    
    private ListView listView;    
    
    private Button send_but;    
    private EditText send_msg;    
    
    private Handler handle = new Handler() {    
        public void handleMessage(Message msg) {    
            SetChatMessage chatMsg = (SetChatMessage) msg.obj;    
            dataList.add(chatMsg);    
            myAdapter.notifyDataSetChanged();    
        }    
    };    
    
    protected void onCreate(Bundle savedInstanceState) {    
        super.onCreate(savedInstanceState);    
        requestWindowFeature(Window.FEATURE_NO_TITLE);    
        setContentView(R.layout.activity_main);    
        initView();    
        initData();    
        initEvent();    
    
    }    
    
    private void initEvent() {    
        send_but.setOnClickListener(new OnClickListener() {    
            public void onClick(View v) {    
                String msg = send_msg.getText().toString();    
                if (TextUtils.isEmpty(msg)) {    
                    Toast.makeText(MainActivity.this, "消息不能为空。",    
                            Toast.LENGTH_SHORT).show();    
                    return;    
                }    
    
                // 设置消息源 显示到listview中    
                SetChatMessage chatMsg = new SetChatMessage();    
                chatMsg.setDate(new Date());    
                chatMsg.setMsg(msg);    
                chatMsg.setType(Type.OUTCOME);    
                dataList.add(chatMsg);    
                myAdapter.notifyDataSetChanged();    
                // 文本框清空    
                send_msg.setText("");    
                // 将消息发送至服务端    
                RequestHttp an = new RequestHttp(getApplicationContext(),    
                        handle);    
                an.requestHttp(msg);    
            }    
        });    
    
    }    
    
    private void initData() {    
        dataList.add(new SetChatMessage("你要和小桂子吐槽点什么啊?", new Date(),    
                Type.INCOME));    
    
        myAdapter = new MyAdapter(MainActivity.this, dataList);    
        listView.setAdapter(myAdapter);    
    }    
    
    private void initView() {    
        listView = (ListView) findViewById(id.listView);    
    
        send_but = (Button) findViewById(id.send_but);    
        send_msg = (EditText) findViewById(id.send_msg);    
    
    }    
    
}    

总结一下实现过程:
  List数据----adapter处理------ListView显示
1、首先是数据的获得 ,通过对 免费提供的数据接口进行访问 拿到数据
  由于是网络访问 并不能立刻拿到数据 通过return是不能将响应的数据立刻返回的,所以使用了message来专递数据,handler进行处理
2、数据是json格式的,通过对数据进行分析 使用gson解析数据 并拿到自己需要的数据
3、对数据进行封装 ,添加数据的类型 时间等
 
4、数据解决了就需要adapter来处理数据 继承自baseAdapter 使用viewHolder 来提高效率
5、listview的显示 布局的搭建 以及对显示的需求 
  设置无分隔线 以及分隔高度
    android:divider="@null" android:dividerHeight="5dp" 
  设置数据向上滚动 以免输入法挡住数据
   android:fastScrollEnabled="true" android:scrollbarStyle="insideInset" android:transcriptMode="normal"
  等等。。。按自己喜好更改

转载:http://juheshuju1.iteye.com/blog/2327357

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • e你失去的,最终都会以另一种方式归来。 题目虽然是活死人,但我并不想杜撰一个悬疑灵异的故事来讲。讲故事本就不是我的...
    大狮兄0539阅读 240评论 0 0
  • 我要睡了 好开心! 每天晚上最开心的就是带着耳机,听着音乐,脑袋了想着不切实际的小生活。 我就是这样的大酷酷!
    聪明达达山阅读 176评论 0 0
  • 再没有比让自己心情好更重要的事 过好自己的当前的日子 也是一种能力
    阿OO阅读 168评论 0 0
  • 在不多的旅行经验里,每个地方总有属于他们的山和水,不管是风景如画的婺源还是浩瀚无垠的丽水,山水总有重叠的美丽,但却...
    鱼儿記阅读 357评论 1 0