仿微信朋友圈点赞人列表和评论人列表

16

仿微信朋友圈点赞人列表和评论人列表

仿微信朋友圈点赞人列表和评论人列表

前言----

在微信朋友圈中,用户可以发布自己的生活照片或视频,并允许其他用户对其进行点赞和评论。点赞人列表和评论人列表是朋友圈功能的重要组成部分,它们能够让用户快速了解到自己发布内容的受众情况。

本文将详细描述如何实现仿微信朋友圈点赞人列表和评论人列表的功能。

数据结构

为了实现点赞人列表和评论人列表,我们需要定义相应的数据结构。以下是两个相关的类:

```java// 点赞人列表public class LikeList {

private String userId; // 点赞用户ID private boolean isLike; // 是否点过赞 public LikeList(String userId, boolean isLike) {

this.userId = userId;

this.isLike = isLike;

}

public String getUserId() {

return userId;

}

public void setUserId(String userId) {

this.userId = userId;

}

public boolean isLike() {

return isLike;

}

public void setLike(boolean like) {

isLike = like;

}

}

//评论人列表public class CommentList {

private String userId; //评论用户ID private String commentContent; //评论内容 public CommentList(String userId, String commentContent) {

this.userId = userId;

this.commentContent = commentContent;

}

public String getUserId() {

return userId;

}

public void setUserId(String userId) {

this.userId = userId;

}

public String getCommentContent() {

return commentContent;

}

public void setCommentContent(String commentContent) {

this.commentContent = commentContent;

}

}

```

点赞人列表

实现点赞人列表的功能需要以下步骤:

1. 保存点赞记录: 当用户点击"点赞"按钮时,需要保存点赞记录。可以使用一个HashMap来存储点赞记录,键为用户ID,值为布尔类型表示是否点过赞。

2. 更新点赞人列表: 当新用户点赞或取消点赞时,需要更新点赞人列表。可以使用Handler机制在主线程中更新UI。

以下是具体的代码实现:

```java// 点赞记录HashMapprivate HashMap likeMap = new HashMap<>();

public void onLikeButtonClicked(String userId) {

//保存点赞记录 likeMap.put(userId, true);

// 更新点赞人列表 updateLikeList();

}

public void onCancelLikeButtonClicked(String userId) {

//保存取消点赞记录 likeMap.put(userId, false);

// 更新点赞人列表 updateLikeList();

}

private void updateLikeList() {

Handler handler = new Handler(Looper.getMainLooper());

handler.post(new Runnable() {

@Override public void run() {

// 更新点赞人列表UI ListView listView = findViewById(R.id.like_list);

List likeLists = new ArrayList<>();

for (String userId : likeMap.keySet()) {

LikeList likeList = new LikeList(userId, likeMap.get(userId));

likeLists.add(likeList);

}

ArrayAdapter adapter = new ArrayAdapter<>(getApplicationContext(), android.R.layout.simple_list_item_1, likeLists);

listView.setAdapter(adapter);

}

});

}

```

评论人列表

实现评论人列表的功能需要以下步骤:

1. 保存评论记录: 当用户输入评论内容并点击"评论"按钮时,需要保存评论记录。可以使用一个HashMap来存储评论记录,键为用户ID,值为评论内容。

2. 更新评论人列表: 当新用户评论或删除评论时,需要更新评论人列表。可以使用Handler机制在主线程中更新UI。

以下是具体的代码实现:

```java//评论记录HashMapprivate HashMap commentMap = new HashMap<>();

public void onCommentButtonClicked(String userId, String commentContent) {

//保存评论记录 commentMap.put(userId, commentContent);

// 更新评论人列表 updateCommentList();

}

public void onDeleteCommentButtonClicked(String userId) {

// 删除评论记录 commentMap.remove(userId);

// 更新评论人列表 updateCommentList();

}

private void updateCommentList() {

Handler handler = new Handler(Looper.getMainLooper());

handler.post(new Runnable() {

@Override public void run() {

// 更新评论人列表UI ListView listView = findViewById(R.id.comment_list);

List commentLists = new ArrayList<>();

for (String userId : commentMap.keySet()) {

CommentList commentList = new CommentList(userId, commentMap.get(userId));

commentLists.add(commentList);

}

ArrayAdapter adapter = new ArrayAdapter<>(getApplicationContext(), android.R.layout.simple_list_item_1, commentLists);

listView.setAdapter(adapter);

}

});

}

```

总结

本文详细描述了如何实现仿微信朋友圈点赞人列表和评论人列表的功能。通过使用HashMap来保存点赞记录和评论记录,并使用Handler机制在主线程中更新UI,可以实现相应的功能。

朋友圈点赞评论

版权声明:除非特别标注,否则均为网络文章,侵权请联系站长删除。

上一篇 微信分享到朋友圈的链接,内容打开正常,但在微信中分享时封面缩略图图像和标题显示不出来?

下一篇 uniapp微信小程序全局实现发送给朋友、分享到朋友圈功能(不需要每个页面都配置)