效果图:

chatting_item_from.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
 android:orientation="vertical"
 android:paddingLeft="6.0dip"
 android:paddingRight="6.0dip"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
   xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView
     android:id="@+id/chatting_time_tv"
     style="@style/ChattingUISplit" />
   
      <TextView
     android:id="@+id/chatting_content_itv"
     android:
     android:background="@drawable/chatfrom_bg"
     style="@style/ChattingUIText" />
</LinearLayout>

chatting_item_to.xml:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout android:orientation="vertical" android:paddingLeft="6.0dip" android:paddingRight="6.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView
     android:id="@+id/chatting_time_tv"
     style="@style/ChattingUISplit" />
    <LinearLayout
     android:orientation="horizontal"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content">
        <TextView
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="1.0" />
        <ImageView
         android:id="@+id/chatting_state_iv"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content" />
          <TextView
         android:
         android:id="@+id/chatting_content_itv"
         android:background="@drawable/chatto_bg"
         style="@style/ChattingUIText" />
    </LinearLayout>
</LinearLayout>

chatting_title_bar.xml

<?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="40dip" 
    android:orientation="horizontal"
    android:gravity="center_vertical"
 android:background="@drawable/mmtitle_bg">
 <TextView
  android:id="@+id/chatting_contact_name"
  android:layout_height="wrap_content"
  android:layout_width="180dip"
  android:textSize="18sp"
  android:ellipsize="end"
  android:background="@null"
  android:textColor="@color/white"
  android:gravity="left|center"
  android:paddingLeft="10dip"  
  android:text="测试用户"
 />
 <TextView
  android:id="@+id/chatting_contact_status"
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@null"
  android:text="正在输入..."
  android:textSize="16sp"
  android:textColor="@color/white"
  android:layout_alignParentRight="true"
  android:layout_alignParentBottom="true"
  android:padding="3dip"
  android:layout_toRightOf="@id/chatting_contact_name"
  android:visibility="gone"
 />
 
</RelativeLayout>

chatting.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
 android:id="@+id/chat_root"
 android:focusable="false"
 android:focusableInTouchMode="false"
 android:background="@drawable/nav_page"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:gravity="center_horizontal"
 android:orientation="vertical"
   xmlns:android="http://schemas.android.com/apk/res/android">
    <ListView
     android:id="@+id/chatting_history_lv"
     android:background="@null"
     android:scrollbars="vertical"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:listSelector="@drawable/mm_chat_listitem"
     android:transcriptMode="alwaysScroll"
     android:cacheColorHint="#00000000"
     android:divider="@null"
     android:layout_weight="1.0" />
   <LinearLayout
     android:orientation="horizontal"
     android:background="@drawable/txt_msg_bg"
     android:paddingRight="7.0dip"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content">
        <ImageView
         android:layout_gravity="center_vertical"
         android:id="@+id/sms_button_insert"
         android:paddingLeft="15.0dip"
         android:paddingTop="5.0dip"
         android:paddingRight="7.0dip"
         android:paddingBottom="5.0dip"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:src="@drawable/sms_insert" />
        <EditText
         android:textColorHint="@color/search_hint"
         android:layout_gravity="center_vertical"
         android:id="@+id/text_editor"
         android:background="@drawable/sms_embeded_text_editor_bg"
         android:focusable="true"
         android:nextFocusRight="@+id/send_button"
         android:layout_width="0.0dip"
         android:layout_height="wrap_content"
         android:layout_marginLeft="7.0dip"
         android:layout_marginTop="5.0dip"
         android:layout_marginRight="7.0dip"
         android:layout_marginBottom="5.0dip"
         android:minHeight="34.0dip"
         android:hint="输入消息"
         android:maxLines="8"
         android:maxLength="2000"
         android:capitalize="sentences"
         android:
         android:layout_weight="1.0"
         android:inputType="textCapSentences|textAutoCorrect|textMultiLine|textShortMessage"
         android:imeOptions="actionSend|flagNoEnterAction" />
        <Button
         android:gravity="center"
         android:layout_gravity="center_vertical"
         android:id="@+id/send_button"
         android:background="@drawable/sms_send_button_bg"
         android:paddingLeft="11.0dip"
         android:paddingRight="11.0dip"
         android:nextFocusLeft="@id/text_editor"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         />
     </LinearLayout>
</LinearLayout>

实体类:

public class ChatMessage {

public static final int MESSAGE_FROM = 0;
 public static final int MESSAGE_TO = 1;

private int direction;
 private String content;

public ChatMessage(int direction, String content) {
  super();
  this.direction = direction;
  this.content = content;
 }

public int getDirection() {
  return direction;
 }

public void setDirection(int direction) {
  this.direction = direction;
 }

public void setContent(String content) {
  this.content = content;
 }

public CharSequence getContent() {
  return content;
 }

}

adapter类:

import java.util.List;

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 ChattingAdapter extends BaseAdapter {
 protected static final String TAG = "ChattingAdapter";
 private Context context;

private List<ChatMessage> chatMessages;

public ChattingAdapter(Context context, List<ChatMessage> messages) {
  super();
  this.context = context;
  this.chatMessages = messages;

}

public int getCount() {
  return chatMessages.size();
 }

public Object getItem(int position) {
  return chatMessages.get(position);
 }

public long getItemId(int position) {
  return position;
 }

public View getView(int position, View convertView, ViewGroup parent) {
  ViewHolder holder = null;
  ChatMessage message = chatMessages.get(position);
  if (convertView == null || (holder = (ViewHolder) convertView.getTag()).flag != message.getDirection()) {

holder = new ViewHolder();
   if (message.getDirection() == ChatMessage.MESSAGE_FROM) {
    holder.flag = ChatMessage.MESSAGE_FROM;

convertView = LayoutInflater.from(context).inflate(R.layout.chatting_item_from, null);
   } else {
    holder.flag = ChatMessage.MESSAGE_TO;
    convertView = LayoutInflater.from(context).inflate(R.layout.chatting_item_to, null);
   }

holder.text = (TextView) convertView.findViewById(R.id.chatting_content_itv);
   convertView.setTag(holder);
  }
  holder.text.setText(message.getContent());

return convertView;
 }
//优化listview的Adapter
 static class ViewHolder {
  TextView text;
  int flag;
 }

}

主activity类
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;

public class MainActivity extends Activity {
 protected static final String TAG = "MainActivity";
 private ChattingAdapter chatHistoryAdapter;
 private List<ChatMessage> messages = new ArrayList<ChatMessage>();

private ListView chatHistoryLv;
 private Button sendBtn;
 private EditText textEditor;
 //private ImageView sendImageIv;
 //private ImageView captureImageIv;
 //private View recording;
 //private PopupWindow menuWindow = null;

@Override
 public void onCreate(Bundle savedInstanceState) {
  requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
  super.onCreate(savedInstanceState);
  setContentView(R.layout.chatting);
  getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.chatting_title_bar);
  chatHistoryLv = (ListView) findViewById(R.id.chatting_history_lv);
  setAdapterForThis();
  sendBtn = (Button) findViewById(R.id.send_button);
  textEditor = (EditText) findViewById(R.id.text_editor);
  
  sendBtn.setOnClickListener(l);

}

// 设置adapter
 private void setAdapterForThis() {
  initMessages();
  chatHistoryAdapter = new ChattingAdapter(this, messages);
  chatHistoryLv.setAdapter(chatHistoryAdapter);
 }

// 为listView添加数据
 private void initMessages() {
  messages.add(new ChatMessage(ChatMessage.MESSAGE_FROM, "hello"));
  messages.add(new ChatMessage(ChatMessage.MESSAGE_TO, "hello"));
  messages.add(new ChatMessage(ChatMessage.MESSAGE_FROM, "你好吗?"));
  messages.add(new ChatMessage(ChatMessage.MESSAGE_TO, "非常好!"));
  messages.add(new ChatMessage(ChatMessage.MESSAGE_FROM, "欢迎光临我的博客,http://hi.csdn.net/lyfi01"));
  messages.add(new ChatMessage(ChatMessage.MESSAGE_TO, "恩,好的,谢谢"));
 }

private View.OnClickListener l = new View.OnClickListener() {

public void onClick(View v) {

if (v.getId() == sendBtn.getId()) {
    String str = textEditor.getText().toString();
    String sendStr;
    if (str != null
      && (sendStr = str.trim().replaceAll("\r", "").replaceAll("\t", "").replaceAll("\n", "")
        .replaceAll("\f", "")) != "") {
     sendMessage(sendStr);

}
    textEditor.setText("");

}
  }

// 模拟发送消息
  private void sendMessage(String sendStr) {
   messages.add(new ChatMessage(ChatMessage.MESSAGE_TO, sendStr));
   chatHistoryAdapter.notifyDataSetChanged();
  }

};
}

转自:http://blog.sina.com.cn/s/blog_80723de80100vnxg.html

android 实现qq聊天对话界面效果的更多相关文章

  1. Android仿QQ复制昵称效果

    本文同步自http://javaexception.com/archives/76 背景: 这几天做一个复制文本的需求,突然看到QQ上复制昵称跟QQ号的效果,觉得很不错,就想要模仿一波,办法比较简单粗 ...

  2. Android——仿QQ聊天撒花特效

    实现这样的效果,你要知道贝塞尔曲线,何谓贝塞尔曲线?其实就是曲线,嘿嘿,关于曲线的概念大家可以去 Android绘图机制(二)——自定义View绘制形, 圆形, 三角形, 扇形, 椭圆, 曲线,文字和 ...

  3. 【HTML5】实现QQ聊天气泡效果

    今天自己用 HTML/CSS 做了个类似QQ的聊天气泡,以下是效果图: 以下说下关键地方的样式设置.然后贴出html和css代码(不多). 步骤1:布局 消息採用div+float布局,每条消息用一个 ...

  4. Android仿QQ复制昵称效果2

    本文同步自http://javaexception.com/archives/77 背景: 在上一篇文章中,给出了一种复制QQ效果的方案,今天就来讲讲换一种方式实现.主要依赖的是一个开源项目https ...

  5. Android特效专辑(六)——仿QQ聊天撒花特效,无形装逼,最为致命

    Android特效专辑(六)--仿QQ聊天撒花特效,无形装逼,最为致命 我的关于特效的专辑已经在CSDN上申请了一个专栏--http://blog.csdn.net/column/details/li ...

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

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

  7. Android 开发笔记___textview_聊天室效果

    <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=&quo ...

  8. android采用MVP完整漫画APP、钉钉地图效果、功能完善的音乐播放器、仿QQ动态登录效果、触手app主页等源码

    Android精选源码 一个可以上拉下滑的Ui效果,觉得好看可以学学 APP登陆页面适配 一款采用MVP的的完整漫画APP源码 android实现钉钉地图效果源码 一个使用单个文字生成壁纸图片的app ...

  9. reactnative实现qq聊天消息气泡拖拽消失效果

    前言(可跳过) 我在开发自己的APP时遇到了一个类似于qq聊天消息气泡拖拽消息的需求,因为在网上没有找到相关的组件,所以自己动手实现了一下 需求:对聊天消息气泡拖拽到一定长度松开时该气泡会消失(可自行 ...

随机推荐

  1. URAL 1881 Long problem statement

    1881. Long problem statement Time limit: 0.5 secondMemory limit: 64 MB While Fedya was writing the s ...

  2. Codeforces Round #196 (Div. 2) A. Puzzles 水题

    A. Puzzles Time Limit: 2 Sec  Memory Limit: 60 MB 题目连接 http://acm.zju.edu.cn/onlinejudge/showProblem ...

  3. Linux学习之CentOS(十三)--CentOS6.4下Mysql数据库的安装与配置(转)

    原文地址:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html 如果要在Linux上做j2ee开发,首先得搭建 ...

  4. ELMAH--Using HTTP Modules and Handlers to Create Pluggable ASP.NET Components 77 out of 90 rated th

    MSDN===http://msdn.microsoft.com/en-us/library/aa479332.aspx PROJECT==https://code.google.com/p/elma ...

  5. Android 面试题(答案最全)

    1. Android dvm的进程和Linux的进程, 应用程序的进程是否为同一个概念DVM指dalivk的虚拟机.每一个Android应用程序都在它自己的进程中运行,都拥有一个独立的Dalvik虚拟 ...

  6. 《疯狂iOS讲义(下)——iPhone/iPad高级应用与手游开发(含CD光盘1张)》

    <疯狂iOS讲义(下)——iPhone/iPad高级应用与手游开发(含CD光盘1张)> 基本信息 作者: 李刚    肖文吉 出版社:电子工业出版社 ISBN:9787121224379 ...

  7. spoj Goblin Wars(简单bfs)

    J - Goblin Wars Time Limit:432MS    Memory Limit:1572864KB    64bit IO Format:%lld & %llu Submit ...

  8. 安全开发 | 如何让Django框架中的CSRF_Token的值每次请求都不一样

    前言 用过Django 进行开发的同学都知道,Django框架天然支持对CSRF攻击的防护,因为其内置了一个名为CsrfViewMiddleware的中间件,其基于Cookie方式的防护原理,相比基于 ...

  9. Dropwizard框架入门

    最近项目用到了Dropwizard框架,个人感觉还不错,那么这里就从他们官网入手,然后加上自己的实现步骤让大家初步了解这个框架. 官网对DW(Dropwizard)的定义是跨越了一个库和框架之间的界限 ...

  10. Jquery解析Json格式数据

    今天稍微学习了一下Json,JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式. 易于人阅读和编写.同时也易于机器解析和生成. JSON采用完全独立于语言的 ...