2、搭建聊天界面布局
整个界面最外层采用线性布局,在最大的中先设置了一个用来显示聊天窗口的文本为机器人。
接着在下面放置了一个,在它里面先放置了一个,用于显示聊天消息列表。
然后放置了一个小的,里面放置了一个和一个,在右侧,文本为“发送”,作为发送按钮,则是聊天输入框,在里面输入聊天内容。
这样整个聊天界面的布局文件就搭建好了。如图所示:
的代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="45dp"
android:gravity="center"
android:background="#0cc4e5"
android:text="机器人"
android:textColor="@android:color/white"
android:textSize="20sp"/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/rl_bottom"
android:cacheColorHint="@android:color/black"
android:divider="@null"
android:listSelector="@null"
android:transcriptMode="alwaysScroll"/>
<RelativeLayout
android:id="@+id/rl_bottom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/bottom_bg">
<Button
android:id="@+id/btn_send"
android:layout_width="60dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:background="@drawable/btn_send_selector"
android:text="发送"
android:textColor="@android:color/black"
android:textSize="14sp"/>
<EditText
android:id="@+id/et_send_msg"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/btn_send"
android:background="@drawable/send_msg_bg"
android:singleLine="true"
android:textColor="@android:color/black"
android:textSize="18sp"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
3、搭建聊天条目布局
文件为机器人聊天头像和聊天框显示文件,用于显示机器人的聊天内容。
主要是在中放置了一个和一个,为机器人的头像图片, 中的 style 设置为 style 文件夹中写好的格式文件 , 选择中的【鼠标选中消息,背景显示为深绿色,默认显示为绿色】。效果如图:
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dp">
<ImageView
android:id="@+id/iv_head"
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:background="@drawable/robot_head"
android:focusable="false"/>
<TextView
android:id="@+id/tv_chat_content"
style="@style/chat_content_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/iv_head"
android:background="@drawable/chat_left_selector" />
</RelativeLayout>
文件为用户聊天头像和聊天框显示文件,用于显示用户的聊天内容。
和机器人的聊天条目相同。主要是在中放置了一个和一个, 为用户的头像图片 ,中的 style 为 style 中 ,
选择中的【鼠标选中消息,背景显示为灰色,默认显示为白色】。效果如图:
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dp">
<ImageView
android:id="@+id/iv_head"
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:background="@drawable/myhead"
android:focusable="false"/>
<TextView
android:id="@+id/tv_chat_content"
style="@style/chat_content_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_toLeftOf="@+id/iv_head"
android:background="@drawable/chat_right_selector"/>
</RelativeLayout>
4、封装聊天信息实体类
在类中创建机器人与用户聊天信息的属性。重写了get和set方法,消息的状态设为state,如果是发送的消息,state值设为1;如果是接受的消息,state值设为2。
public class ChatBean {
public static final int SEND=1;//发送消息
public static final int RECEIVE=2;//接收消息
private int state;//消息的状态(是接收还是发送)
private String message;//消息的内容
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
5、编写聊天列表适配器
由于聊天界面用了控件显示聊天信息,因此需要创建一个数据适配器对控件进行数据适配。所以要创建一个类。
方法内用if和else语句判断当前的消息是发送的消息还是接收到的消息,不同消息加载不同的view。如果是接收消息,说明就是机器人发的消息,那就加载左边布局;如果是发送消息,说明就是用户发的消息,则加载右边布局。
@Override
public View getView(int position, View contentView, ViewGroup viewGroup) {
Holder holder = new Holder();
//判断当前信息是发送信息还是接收信息,根据不同信息加载不同布局文件
if (chatBeanList.get(position).getState() == ChatBean.RECEIVE) {
//加载机器人对应的布局文件
contentView = layoutInflater.inflate(R.layout.chatting_left_item, null);
} else {
//加载用户对应的布局文件
contentView = layoutInflater.inflate(R.layout.chatting_right_item,null);
}
//获取聊天内容控件,并设置控件的文本信息
holder.tv_chat_content = (TextView) contentView.findViewById(R.id. tv_chat_content);
holder.tv_chat_content.setText(chatBeanList.get(position).getMessage());
return contentView;
}
6、实现智能机器人通信
1、设置机器人的欢迎信息
机器人随机发出一些欢迎信息放在res/文件夹中的.xml文件中。
<resources>
<string name="app_name">聊天机器人</string>
<string-array name="welcome">
<item>主人,我好无聊呀,快来陪我玩吧。</item>
<item>主人,你又来陪我玩了呀,不能太久哦,你还要好好复习呢。</item>
<item>主人,我们一起唱歌吧。</item>
<item>我想主人了呢。</item>
<item>主人是这个世界上最好看的人!</item>
<item>今天天气超级好,我心情也很愉快哦。</item>
<item>小主人,一起散步嘛。</item>
</string-array>
</resources>
2、发送网络请求
在类中定义了( , text)方法,用来从服务器请求数据,方法是将输入流中的字节转换为字符串。
public String dealResponseResult(InputStream inputStream) {
String resultData = null; // 处理后的字符串
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
byte[] data = new byte[1024];// 字节数组
int len = 0;
try {
while((len = inputStream.read(data)) != -1) {
byteArrayOutputStream.write(data, 0, len);
}
} catch (IOException e) {
e.printStackTrace();
}
resultData = new String(byteArrayOutputStream.toByteArray());
return resultData;
}
3、显示用户发送消息
用户发送首先获取输入的信息,进行判空操作,然后清空消息框,将发送的信息添加到数据源列表中,通知适配器更新列表,再从服务器获取机器人回复的信息。
private void sendData(){
// 获取你输入的信息
sendMsg = et_send_msg.getText().toString();
// 判断消息是否为空
if(TextUtils.isEmpty(sendMsg)){
Toast.makeText(this,"您还未输入信息哦",Toast.LENGTH_LONG).show();
return;
}
// 清空消息框
et_send_msg.setText("");
// 替换空格和换行
sendMsg = sendMsg.replaceAll(" ","").
replaceAll("n","").trim();
ChatBean chatBean = new ChatBean();
chatBean.setMessage(sendMsg);
// SEND表示自己发送的信息
chatBean.setState(chatBean.SEND);
// 将发送的信息添加到数据源列表中
chatBeanList.add(chatBean);
// 通知适配器更新ListView列表
adapter.notifyDataSetChanged();
// 从服务器获取机器人回复的信息
getDataFromServer();
}