一.最终成型图

二.主界面xml布局

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:id="@+id/activity_main"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    >

    <ListView

        android:layout_width="match_parent"

        android:layout_height="0dp"

        android:id="@+id/msgList"

        android:layout_weight="1"

        android:divider="#0000"

        />

    <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:orientation="horizontal">

        <EditText

            android:id="@+id/send_msg"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_weight="1"

            android:maxLines="2"

            android:hint="请输入内容"/>

        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="发送"

            android:id="@+id/send"

            android:onClick="btnClick"

            />

    </LinearLayout>

</LinearLayout>

  

三.Msg类:

public class Msg {

    public static final int TYPE_RECEIVED = 0;

    public static final int TYPE_SEND = 1;

    private String content;

    private int type;

    public Msg(String content, int type) {

        this.content = content;

        this.type = type;

    }

    public String getContent() {

        return content;

    }

    public int getType() {

        return type;

    }

}

  

四.ListView 子项的布局,msg_item.xml:

<?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"

    android:padding="15dp">

    <LinearLayout

        android:id="@+id/left_layout"

        android:layout_height="wrap_content"

        android:layout_width="wrap_content"

        android:layout_gravity="left"

        android:background="@drawable/left">

    <TextView

        android:id="@+id/left_msg"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_gravity="center"

        android:layout_margin="10dp"/>

    </LinearLayout>

    <LinearLayout

        android:id="@+id/right_layout"

        android:layout_height="wrap_content"

        android:layout_width="wrap_content"

        android:layout_gravity="right"

        android:background="@drawable/right">

        <TextView

            android:id="@+id/right_msg"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_gravity="center"

            android:layout_margin="10dp"

            android:textColor="#000000"/>

    </LinearLayout>

</LinearLayout>

  

五.ListView 的适配器类,让它继承自ArrayAdapter,并将泛型指定为Msg 类。新建类MsgAdapter,代码如下:

public class MsgAdapter extends ArrayAdapter<Msg> {

    private int resourceId;

    public MsgAdapter(Context context, int resource, List<Msg> objects) {

        super(context, resource, objects);

        resourceId = resource;

    }

    @NonNull

    @Override

    public View getView(int position, View convertView, ViewGroup parent) {

        View view;

        Msg msg = getItem(position);

        ViewHolder viewHolder;

        if( convertView == null ){

            view = LayoutInflater.from(getContext()).inflate(resourceId,null);

            viewHolder = new ViewHolder();

            viewHolder.left_layout = (LinearLayout)view.findViewById(R.id.left_layout);

            viewHolder.right_layout = (LinearLayout)view.findViewById(R.id.right_layout);

            viewHolder.left_msg = (TextView)view.findViewById(R.id.left_msg);

            viewHolder.right_msg = (TextView)view.findViewById(R.id.right_msg);

            view.setTag(viewHolder);

        }else{

            view = convertView;

            viewHolder = (ViewHolder)view.getTag();

        }

        if( msg.getType() == Msg.TYPE_RECEIVED ){

            viewHolder.left_layout.setVisibility(View.VISIBLE);

            viewHolder.right_layout.setVisibility(View.GONE);

            viewHolder.left_msg.setText(msg.getContent());

        }else{

            viewHolder.left_layout.setVisibility(View.GONE);

            viewHolder.right_layout.setVisibility(View.VISIBLE);

            viewHolder.right_msg.setText(msg.getContent());

        }

        return view;

    }

    class ViewHolder{

        LinearLayout left_layout;

        LinearLayout right_layout;

        TextView left_msg;

        TextView right_msg;

    };

}

  

六.修改MainActivity 中的代码,来为ListView 初始化一些数据,并给发送按钮加入事件响应

public class MainActivity extends Activity {

    private List<Msg> msgList = new ArrayList<Msg>();

    private MsgAdapter msgAdapter;

    private ListView listView;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        initList();

        listView = (ListView)findViewById(R.id.msgList);

        msgAdapter = new MsgAdapter(MainActivity.this,

                R.layout.msg_item,

                msgList);

        listView.setAdapter(msgAdapter);

    }

    protected void btnClick(View view){

        if( view.getId() == R.id.send ){

            EditText send_msg = (EditText)findViewById(R.id.send_msg);

            String message = send_msg.getText().toString().trim();

            if( message.length() >0 ){

                Msg msg = new Msg(message, Msg.TYPE_SEND);

                msgList.add(msg);

                msgAdapter.notifyDataSetChanged();

                listView.setSelection(msgList.size());

                send_msg.setText("");

            }

        }

    }

    private  void initList(){

        Msg msg;

        msg = new Msg("你好啊,朋友", 0);

        msgList.add(msg);

        msg = new Msg("我很好", 1);

        msgList.add(msg);

        msg = new Msg("what are you doing?", 0);

        msgList.add(msg);

    }

}

  

ListView:聊天界面的更多相关文章

  1. 自定义一个ListView实现聊天界面

    摘要 ListView可以称得上Android中最常用也最难用的控件了,几乎所有的应用程序都会用到它.由于手机屏幕空间都比较有限,能够一次性在屏幕上显示的内容并不多,当我们的程序中有大量的数据需要展示 ...

  2. Android—简单的仿QQ聊天界面

    最近仿照QQ聊天做了一个类似界面,先看下界面组成(画面不太美凑合凑合呗,,,,):

  3. Android学习笔记(十二)——实战:制作一个聊天界面

    //此系列博文是<第一行Android代码>的学习笔记,如有错漏,欢迎指正! 运用简单的布局知识,我们可以来尝试制作一个聊天界面. 一.制作 Nine-Patch 图片 : Nine-Pa ...

  4. 自定义android精美聊天界面

    编写精美聊天界面,那就肯定要有收到的消息和发送的消息. 首先还是编写主界面,修改activity_chat.xml中的代码,如下所示: <?xml version="1.0" ...

  5. 高仿qq聊天界面

    高仿qq聊天界面,给有需要的人,界面效果如下: 真心觉得做界面非常痛苦,给有需要的朋友. chat.xml <?xml version="1.0" encoding=&quo ...

  6. Android开发学习之路--UI之简单聊天界面

    学了很多的ui的知识,这里就来实现个聊天的界面,首先来实现个layout的xml,代码如下: <?xml version="1.0" encoding="utf-8 ...

  7. RecyclerView 作为聊天界面,被键盘遮挡的解决办法

    最近项目在重构,使用 RecyclerView 替换了 ListView 作为 IM 的聊天界面.然后遇到了一个问题就是当键盘弹出来的时候,键盘会遮挡住 RecyclerView 的一部分,造成聊天内 ...

  8. RV 多样式 MultiType 聊天界面 消息类型 MD

    Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱 MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina ...

  9. android 仿微信聊天界面,以及语音录制功能

    extends:http://104zz.iteye.com/blog/1709840 本例为模仿微信聊天界面UI设计,文字发送以及语言录制UI. 1先看效果图:     第一:chat.xml设计 ...

随机推荐

  1. WPF - 样式 (转)

    本文目录 1.引言 2.怎样使用样式? 3.内联样式 4.已命名样式 5.元素类型样式 6.编程控制样式 7.触发器 1.引言 样式(Style),主要是用来让元素或内容呈现一定外观的属性.WPF中的 ...

  2. Spring的属性依赖检查

    spring支持4种依赖检查:默认的是none none – No dependency checking. simple – If any properties of primitive type ...

  3. [ CodeVS冲杯之路 ] P1039

    不充钱,你怎么AC? 题目:http://codevs.cn/problem/1039/ 一道赤裸裸的嘲讽型数学题,推出来的话算法代码就3行,没有推出来连暴力都无从入手…… 设 f(n,m) 为整数 ...

  4. pip3 快速安装

    https://www.cnblogs.com/wenchengxiaopenyou/p/5709218.html

  5. zmap zgrab 环境搭建

    yum install cmake gmp-devel gengetopt libpcap-devel flex byacc json-c-devel libunistring-devel golan ...

  6. pycharm远程登录mysql

    pycharm远程登录mysqlmysql远程登录需要修改配置文件:cd /etc/mysql/mysql.conf.d/sudo vim mysqld.cn修改bing-address=0.0.0. ...

  7. 内核中的内存申请:kmalloc、vmalloc、kzalloc、kcalloc、get_free_pages【转】

    转自:http://www.cnblogs.com/yfz0/p/5829443.html 在内核模块中申请分配内存需要使用内核中的专用API:kmalloc.vmalloc.kzalloc.kcal ...

  8. 如何使用python发送邮件

    使用python发送邮件,用的是SMTP协议. 因此在qq邮箱中,要设置开启SMTP服务 只要能开启一个就行 在我们执行程序的时候,会发现邮件被发送过来了 在python中还有一个更简单的第三方模块, ...

  9. VirtualBox安装部署的Ubuntu16.04的步骤

    1.下载ubuntu16.04镜像 http://cn.ubuntu.com/download/ 以及虚拟机软件VirtualBox https://www.virtualbox.org/wiki/D ...

  10. VS2008中的配置文件app.config简单小结

    应用程序的配置文件用于读取和保存简单的本地数据,vs中新增配置文件可以直接在项目的”属性“-”设置“里添加,添加后在项目的Properties文件夹会多出一组两个文件:Settings.setting ...