`
sharong
  • 浏览: 492418 次
  • 性别: Icon_minigender_1
  • 来自: 北京
博客专栏
D1667ae2-8cfc-3b68-ac7c-5e282789fa4a
论开源
浏览量:8695
7eb53364-fe48-371c-9623-887640be0185
Spring-data-j...
浏览量:13025
社区版块
存档分类
最新评论

类似微信5.x朋友圈的弹出框评论功能

 
阅读更多
实现对一个主题评论并显示评论列表,首先想到的是需要使用ListView控件,
下面是layout下的xml布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/list_selector"
    android:orientation="horizontal"
    android:padding="5dip" >

    <LinearLayout
        android:id="@+id/thumbnail"
        android:layout_width="120dip"
        android:layout_height="120dip"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="5dip"
        android:background="@drawable/image_bg"
        android:padding="1dip" >

        <ImageView
            android:id="@+id/group_image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerInside"
            android:src="@drawable/copyright" />
    </LinearLayout>
    <TextView
        android:id="@+id/group_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/thumbnail"
        android:layout_toRightOf="@+id/thumbnail"
        android:text="测试朋友圈评论功能"
        android:textColor="#040404"
        android:textSize="15sp"
        android:textStyle="bold"
        android:typeface="sans" />

    <TextView
        android:id="@+id/group_content"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/thumbnail"
        android:text="狗狗见到蟒,冲过去照头上就舔"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#343434"
        android:textSize="12sp" />

    <ImageView
        android:id="@+id/group_discuss_popup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/group_content"
        android:layout_below="@+id/group_content"
        android:background="@drawable/coment_pressed" />

    <TextView
        android:id="@+id/group_createtime"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/TextView09"
        android:layout_toLeftOf="@+id/group_discuss_popup"
        android:gravity="right"
        android:text="2014-08-24 15:45"
        android:textColor="#10bcc9"
        android:textSize="12sp"
        android:textStyle="bold" />

    <RelativeLayout
        android:id="@+id/rl_bottom"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >

        <Button
            android:id="@+id/group_discuss_submit"
            android:layout_width="60dp"
            android:layout_height="40dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:background="@drawable/chat_send_button_bg"
            android:onClick="discussSubmit"
            android:text="发送"
            android:textSize="20sp" />

        <EditText
            android:id="@+id/group_discuss"
            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/group_discuss_submit"
            android:hint="评论"
            android:singleLine="true"
            android:textSize="18sp" >
            <requestFocus />
        </EditText>
    </RelativeLayout>

	<ListView
	    android:id="@+id/group_discuss_list"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:layout_alignParentRight="true"
	    android:layout_below="@+id/group_discuss_popup"
	    android:layout_marginTop="14dp"
	    android:divider="#b5b5b5"
	    android:dividerHeight="1dp"
	    android:listSelector="@drawable/list_selector" />

	<TextView
	    android:id="@+id/TextView09"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:layout_alignBottom="@+id/thumbnail"
	    android:layout_marginBottom="40dp"
	    android:layout_toRightOf="@+id/thumbnail"
	    android:text="时间:"
	    android:textColor="#040404"
	    android:textSize="12sp"
	    android:textStyle="bold"
	    android:typeface="sans" />

</RelativeLayout>

然后在Activity类的onCreate方法里,获取ListView的实例,并对每一个item增加监听器
        //为防止layout界面上的EditText在进入页面时就弹出输入法,隐藏软键盘
        getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
        
        listView = (ListView)findViewById(R.id.group_discuss_list);
        this.discussOnItemClickListener();

每一个item增加监听器的方法discussOnItemClickListener()
    /**
     * 评论列表被单击后的事件监听
     */
    private void discussOnItemClickListener() {
        //为评论的每一行添加单击事件
		listView.setOnItemClickListener(new OnItemClickListener() {
			@Override
			public void onItemClick(AdapterView<?> parent, View view,int position, long id) {	
				//获得父贴的发帖人
				Map<String, String> posMap = discussList.get(position);				
				//设置pusername
				pname = posMap.get("username");
				
				//取得填写评论editText的实例
				EditText disInputText = (EditText)findViewById(R.id.group_discuss);
				disInputText.setHint("回复" + pname);
				
				disInputText.requestFocus();				
			}			
		});		            	
    }

接下来重点说说单击评论图标之后的弹出框,同样在Activity类的onCreate方法中,给评论图标增加onclick监听器,然后增加两个弹出项赞,评论,并且给这两个item增加监听,代码如下:
		groupPopup = (ImageView) findViewById(R.id.group_discuss_popup);
		groupPopup.setOnClickListener(titlePopupOnclick);
		
		titlePopup = new TitlePopup(this, Utils.dip2px(this, 165), Utils.dip2px(this, 40));
		titlePopup.addAction(new ActionItem(this, "赞", R.drawable.circle_praise));
		titlePopup.addAction(new ActionItem(this, "评论",R.drawable.circle_comment));
		
		titlePopup.setItemOnClickListener(this);		

监听的方法实现
	/**
	 * 单击评论按钮,弹出菜单的item click 监听
	 */
	@Override
	public void onItemClick(ActionItem actionItem,int position) {
		//position,0-赞;1-评论
		switch(position){
		case 0://赞
			break;
		case 1://评论
			EditText disInputText = (EditText)findViewById(R.id.group_discuss);
			disInputText.requestFocus();
			
			break;
		default:
			break;
		}
	}

很简单,就是当单击item里的评论时,请求EditText输入框的焦点,调出输入法.

最后我们来说说添加评论功能,demo只是模拟添加了一些评论,真实环境下显然首先需要向服务端提交数据,然后从服务端请求评论列表.demo中只是在Activity类里维护一个全局List简单代替.然后使用一个BaseAdapter的实现类,实现其getView方法来显示出来.
    	Map<String, String> map = new HashMap<String, String>();
    	//给map设置要显示的值
    	map.put("distime", DateUtils.formaterDate2YMDHm(new Date(System.currentTimeMillis())));
    	map.put("content", content);
    	
    	//设置父贴的发帖人信息
    	map.put("puid", puid + "");
    	map.put("pname", pname);
    	
    	//设置自己的信息
    	map.put("uid", uid + "");
    	map.put("username", username);

    	discussList.add(map);
    	
	ListLazyAdapter adapter = new ListLazyAdapter(this, discussList);		
        listView.setAdapter(adapter); 			//设置adapter

基本上就以上三部分主要功能,可以实现一个简单的单击显示弹出框之后的评论功能.
效果图如下:


本文示例源代码下载地址:
http://download.csdn.net/detail/gaolu/7963061
0
0
分享到:
评论

相关推荐

    仿微信5.x朋友圈的弹出框评论功能

    在Android开发中,仿微信5.x朋友圈的弹出框评论功能是一个常见的需求,它涉及到多个技术点,包括用户界面设计、事件处理、数据管理以及列表显示等。下面将详细讲解这个功能实现的关键知识点。 首先,我们需要理解...

    微信小程序模仿朋友圈实现(点赞、评论等).zip

    微信小程序模仿朋友圈实现: 朋友圈发布 朋友圈点赞 朋友圈评论 朋友圈回复评论 点赞撤销 评论删除 已发布朋友圈删除 评论内容安全审核校验 微信小程序模仿朋友圈实现: 朋友圈发布 朋友圈点赞 朋友圈...

    高仿微信朋友圈点赞、评论弹出框效果(自定义Popupwindow实现)

    在Android应用开发中,创建一个高仿微信朋友圈点赞和评论的弹出框效果是一个常见的需求。这个Demo就是针对这一需求,通过自定义`PopupWindow`实现的。`PopupWindow`是Android系统提供的一种轻量级的弹出对话框,它...

    可爱猫配备微信3.1.0.41版本下载

    可爱猫配备微信版本下载3.1.0.41

    类似微信朋友圈+评论

    在iOS开发领域,构建一个类似微信朋友圈的功能是一个挑战性的任务,因为它涉及到用户互动、数据管理、界面设计等多个方面的技术知识。微信朋友圈的核心功能包括发布动态、查看朋友的动态以及进行评论和回复。以下是...

    微信小程序开发 遮罩层弹出框

    在微信小程序开发中,创建一个遮罩层弹出框是常见的需求,这通常用于实现对话框、加载提示或用户交互反馈等场景。本教程将详细讲解如何在微信小程序中实现这样一个功能。 首先,我们需要理解微信小程序的基本架构。...

    Android 仿微信朋友圈点赞和评论弹出框功.zip

    这个压缩包文件"Android 仿微信朋友圈点赞和评论弹出框功.zip"很可能包含了一套完整的示例代码,用于帮助开发者学习如何在自己的应用中实现这一功能。下面我们将深入探讨这个功能涉及到的关键知识点。 1. **自定义...

    微信小程序仿朋友圈代码

    在"微信小程序仿朋友圈代码"这个项目中,我们将探讨如何利用微信小程序的特性和功能来模拟实现一个类似微信朋友圈的功能。 首先,我们需要了解微信小程序的基本结构。每个小程序由多个页面组成,每个页面由四个文件...

    PC微信2.6.3.68协议源码 易语言

    同时,对于那些想要为微信开发插件或者实现自定义功能的开发者来说,这是一份极其宝贵的资源。 然而,值得注意的是,由于微信的商业性质和版权保护,对源码的非官方使用可能涉及法律风险。因此,在进行研究和学习时...

    朋友圈_duedxc_微信小程序_朋友圈_微信小程序仿朋友圈_

    【标题】"微信小程序仿朋友圈" 是一个针对微信小程序开发的项目,旨在模拟微信应用程序中的“朋友圈”功能。这个项目提供了展示用户动态、发布新动态的功能,为学习和实践微信小程序开发提供了一个实用的示例。 ...

    Android 仿微信朋友圈点赞和评论弹出框功

    在Android应用开发中,模拟微信朋友圈的点赞和评论弹出框功能是一项常见的需求,它涉及到UI设计、事件处理以及数据管理等多个方面的技术。下面将详细解释实现这一功能所需的关键知识点。 1. **自定义对话框(Custom...

    Android 仿微信朋友圈点赞和评论弹出框功(1).zip

    在Android应用开发中,模拟微信朋友圈的点赞和评论弹出框功能是一项常见的需求,它涉及到用户界面(UI)设计、事件处理以及数据交互等多个技术环节。这个"Android 仿微信朋友圈点赞和评论弹出框功(1).zip"的压缩包...

    基于微信PC端的Python接口,开发者可通过Python轻松调用 实现微信机器人、群管理等强大功能!3.9.10.19、x64

    基于微信PC端的Python接口,开发者可通过Python轻松调用。实现微信机器人、群管理等强大的功能!3.9.10.19、x64

    windows电脑版微信2.4.5.73版本

    关于windows版本电脑版微信更新后无法显示好友头像以及接收图片和表情的解决方案,提供安装旧版本微信

    微信小程序仿朋友圈发布动态功能

    仿照微信朋友圈做了一个界面如下,先看效果: 1、点开界面 2、选择图片 3、点击上传 4、动态显示 第一个页面的wxml: &lt;textarea class='text' bindinput=input placeholder=分享动态 auto-height/&gt; ...

Global site tag (gtag.js) - Google Analytics