效果图:

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. .Net高级技术——对象序列化

    对象序列化 “序列化是将一个对象保存到存储介质上或者将对象进行转换使之能够在网络上传送的行为”.通俗一点的解释,序列化就是把一个对象保存到一个文件或数据库字段中去,反序列化就是从文件或者数据库中取出数 ...

  2. Apple Developer Registration and DUNS Number Not Accepted

    Now that I have my Mac and app source code. I’m ready to start working on my first app. The next ste ...

  3. mount nfs 经常出错信息总结(转)

    通常当NFS不能正常使用时候会给出提示,一般给出一下几种: 1)mount: 192.168.1.111:/opt failed, reason given by server: Permission ...

  4. iOS-实现最简单的画线功能 . 转

    前提:CoreGraphics.framework - (void)viewDidLoad { [super viewDidLoad]; UIImageView *imageView=[[UIImag ...

  5. 【spring boot】【log4jdbc】使用log4jdbc打印mybatis的sql和Jpa的sql语句运行情况

    在spring boot 中使用mybatis 想看到sql语句的运行情况. 虽然按照 之前说的配置了 logging.level.你的mapper包位置 = debug 但是依旧没有起作用. 所以采 ...

  6. DevExpress 利用DateEdit 仅显示和选择年份 z

    DevExpress只提供了选择月份的控件MonthEdit,并没提供选择选择年份的控件,目测是官方偷懒不想弄,因为要实现的方法也很简单,利用ComboBoxEdit添加年份数据即可,直接封装一个控件 ...

  7. Rete算法

    RETE算法介绍一. rete概述Rete算法是一种前向规则快速匹配算法,其匹配速度与规则数目无关.Rete是拉丁文,对应英文是net,也就是网络.Rete算法通过形成一个rete网络进行模式匹配,利 ...

  8. [翻译] FTCoreText

    FTCoreText An open source Objective-C interface component that makes use of the CoreText framework t ...

  9. std::vector 两种操作的比较

    swap assign 这里只想说明这三种操作的用处和效率.swap和assign都可以用在将一个vector的内容全部复制给另外一个vector,区别是swap会改变源vector,而assign会 ...

  10. 混沌数学之Standard模型

    相关软件混沌数学之离散点集图形DEMO 相关代码: class StandardEquation : public DiscreteEquation { public: StandardEquatio ...