Android 多商品订单多图评价功能实现(类似淘宝,可自定义可上传图片数量)

公司的商城类项目,需要对一份订单的里面多个商品进行分别评价(图片,文字内容,星级),为了方便使用抽时间实现了这个功能,整体来说还是比较简单的。下面是ui效果图

​​

项目要求最多上传5张图片,这就涉及到换行的问题。最终找到了一个完美的结决方法。利用recycleView嵌套了一个流式布局

FlowTagLayout解决了动态添加复用的问题。

1、 主要布局文件 activity_comments.xml 


xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/lv_comments"

android:layout_width="match_parent"

android:layout_height="match_parent">

1.1 、item的布局

item_comment.xml


android:orientation="vertical"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:background="#ffffff"

android:layout_width="match_parent"

android:layout_height="wrap_content">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:paddingLeft="15dp"

android:paddingTop="8dp"

android:paddingBottom="8dp"

android:orientation="horizontal">

android:id="@+id/iv_goods_image"

android:layout_width="40dp"

android:layout_height="40dp"

android:layout_gravity="center_vertical"

android:background="@mipmap/ic_default"/>

android:id="@+id/rat_comment"

style="?android:attr/ratingBarStyleSmall"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:layout_marginLeft="10dp"

android:isIndicator="false"

android:numStars="5"

android:progressTint="@color/yellow"

android:rating="0"

android:stepSize="0.1" />

android:layout_width="match_parent"

android:layout_height="1dp"

android:background="@color/line_bg"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:paddingTop="15dp"

android:paddingBottom="15dp"

android:orientation="vertical">

android:id="@+id/et_comment"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@null"

android:paddingLeft="15dp"

android:paddingRight="15dp"

android:hint="请填写您的评价"

android:gravity="top"

android:textSize="14dp"

android:textCursorDrawable="@null"

android:textColorHint="#999999"

android:minLines="5"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:id="@+id/fl_comment"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:focusable="true"

android:focusableInTouchMode="true"

android:layout_margin="10dp">

android:layout_width="match_parent"

android:layout_height="5dp"

android:background="@color/activity_gray"/>

1.2、流式布局的item文件tag_item2.xml


android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="#ffffff" >

android:id="@+id/iv_comment_image"

android:layout_width="70dp"

android:layout_height="70dp"

android:layout_marginTop="10dp"

android:layout_marginBottom="5dp"

android:layout_marginLeft="5dp"

android:layout_marginRight="5dp"

android:background="@mipmap/iv_up_image"/>

2、CommentsInfo 评论内容的model类

public class CommentsInfo {

private int ProductId;

private String CommentContent;

public List CommentImgs;

private double StarCount;

public int getProductId() {

return ProductId;

}

public void setProductId(int productId) {

ProductId = productId;

}

public String getCommentContent() {

return CommentContent;

}

public void setCommentContent(String commentContent) {

CommentContent = commentContent;

}

public List getCommentImgs() {

return CommentImgs;

}

public void setCommentImgs(List commentImgs) {

CommentImgs = commentImgs;

}

public double getStarCount() {

return StarCount;

}

public void setStarCount(double starCount) {

StarCount = starCount;

}

}

2.1、下面是用到的adapter

recycleView 的adapter类 CommentAdapter

public class CommentAdapter extends RecyclerView.Adapter {

private ArrayList list;

private Context context;

private OnStatusListener onStatusListener;

public CommentAdapter(ArrayList list, Context context) {

this.list = list;

this.context = context;

}

public void setOnStatusListener(OnStatusListener onStatusListener) {

this.onStatusListener = onStatusListener;

}

@Override

public ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {

ViewHolder viewHolder = new ViewHolder(LayoutInflater.from(context).inflate(R.layout.item_comment, viewGroup, false));

return viewHolder;

}

@Override

public void onBindViewHolder(ViewHolder viewHolder, final int i) {

viewHolder.flComment

.setTagCheckedMode(FlowTagLayout.FLOW_TAG_CHECKED_SINGLE);

TagAdapter1 mSizeTagAdapter1 = new TagAdapter1<>(context);

viewHolder.flComment.setAdapter(mSizeTagAdapter1);

mSizeTagAdapter1.onlyAddAll(list.get(i).getCommentImgs());

viewHolder.flComment.setOnTagSelectListener(new OnTagSelectListener() {

@Override

public void onItemSelect(FlowTagLayout parent, List selectedList) {

if(list.get(i).getCommentImgs().get(selectedList.get(0)).equals("")){

onStatusListener.onSetStatusListener(i);

}else{

onStatusListener.onDeleteListener(i,selectedList.get(0));

}

}

});

}

@Override

public long getItemId(int i) {

return i;

}

@Override

public int getItemCount() {

return list.size();

}

class ViewHolder extends RecyclerView.ViewHolder{

FlowTagLayout flComment;

public ViewHolder(View itemView) {

super(itemView);

flComment = itemView.findViewById(R.id.fl_comment);

}

}

public interface OnStatusListener {

void onSetStatusListener(int pos);

void onDeleteListener(int pos, int tagPos);

}

}

2.2、流式布局的adapter类 TagAdapter

public class TagAdapter extends BaseAdapter implements OnInitSelectedPosition {

private final Context mContext;

private final List mDataList;

public TagAdapter(Context context) {

this.mContext = context;

mDataList = new ArrayList();

}

@Override

public int getCount() {

return mDataList.size();

}

@Override

public Object getItem(int position) {

return mDataList.get(position);

}

@Override

public long getItemId(int position) {

return position;

}

@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)

@Override

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

View view = LayoutInflater.from(mContext).inflate(R.layout.tag_item2, null);

ImageView ivImage = (ImageView) view.findViewById(R.id.iv_comment_image);

T t = mDataList.get(position);

if (t instanceof String) {

if(t.equals("")){

ivImage.setBackground(mContext.getResources().getDrawable(R.mipmap.iv_up_image));

}else{

ImageLoader.getInstance().displayImage(t.toString(), ivImage);

}

}

return view;

}

public void onlyAddAll(List datas) {

mDataList.clear();

mDataList.addAll(datas);

notifyDataSetChanged();

}

public void clearAndAddAll(List datas) {

mDataList.clear();

onlyAddAll(datas);

}

@Override

public boolean isSelectedPosition(int position) {

if (position % 2 == 0) {

return true;

}

return false;

}

}

2.3、activity中的代码

public class CommentsActivity extends Activity implements CommentAdapter.OnStatusListener{

ArrayList list = new ArrayList<>();

CommentAdapter commentAdapter;

RecyclerView lvComment;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_comments);

findViews();

}

protected void findViews() {

lvComment = findViewById(R.id.lv_comments);

LinearLayoutManager layoutmanager = new LinearLayoutManager(this);

//设置RecyclerView 布局

layoutmanager.setOrientation(LinearLayoutManager.VERTICAL);

lvComment.setLayoutManager(layoutmanager);

for(int i=0;i<3;i++){

CommentsInfo commentsInfo = new CommentsInfo();

List commentImgs = new ArrayList<>();

commentImgs.add("");

commentsInfo.setCommentImgs(commentImgs);

list.add(commentsInfo);

}

commentAdapter = new CommentAdapter(list,this);

commentAdapter.setOnStatusListener(this);

lvComment.setAdapter(commentAdapter);

}

//这里可以处理点击添加图片  打开相册或相机功能 然后将图片的路径存到对应的model中 刷新列表

@Override

public void onSetStatusListener(int pos) {

if(list.get(pos).getCommentImgs().size()<5){

CommentsInfo commentsInfo = list.get(pos);

List commentImgs = commentsInfo.getCommentImgs();

commentImgs.add(0,"http://img.xsmore.com/cjyp/Product/2ef24a07-f3b0-4497-8549-2acc0f7ca4b0.jpg");

commentsInfo.setCommentImgs(commentImgs);

list.set(pos,commentsInfo);

commentAdapter.notifyItemChanged(pos);

}else if(list.get(pos).getCommentImgs().size()==5){

CommentsInfo commentsInfo = list.get(pos);

List commentImgs = commentsInfo.getCommentImgs();

commentImgs.set(commentImgs.size()-1,"http://img.xsmore.com/cjyp/Product/2ef24a07-f3b0-4497-8549-2acc0f7ca4b0.jpg");

commentsInfo.setCommentImgs(commentImgs);

list.set(pos,commentsInfo);

commentAdapter.notifyItemChanged(pos);

}

}

@Override

public void onDeleteListener(int pos,int tagPos) {

CommentsInfo commentsInfo = list.get(pos);

List commentImgs = commentsInfo.getCommentImgs();

if(!commentImgs.get(commentImgs.size()-1).equals("")){

commentImgs.add("");

}

commentImgs.remove(tagPos);

commentsInfo.setCommentImgs(commentImgs);

list.set(pos,commentsInfo);

commentAdapter.notifyItemChanged(pos);

}

}

demo下载路径点击打开链接

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,444评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,421评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,363评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,460评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,502评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,511评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,280评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,736评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,014评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,190评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,848评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,531评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,159评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,411评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,067评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,078评论 2 352

推荐阅读更多精彩内容

  • 详情页面 packagecom.example.shoppingcar; importandroid.conten...
    ForCrazyLove阅读 564评论 0 2
  • 本人初学Android,最近做了一个实现安卓简单音乐播放功能的播放器,收获不少,于是便记录下来自己的思路与知识总结...
    落日柳风阅读 19,114评论 2 41
  • 城市发展,日新月异,不破不立。很多基础设施已功能落后,劳民伤财,如何紧跟时代步伐,更好的服务广大人民群众?摆在了城...
    古镇老戴阅读 681评论 0 0
  • 一路阳光匆匆过,一路团友共相伴。穿洲过省看城乡,游客购买欢乐多。临别依依说旅程,南来北往是过客。几度夕阳落车后,那...
    甘朝武阅读 204评论 0 0
  • RVM : Ruby Version ManagerRuby 是一种开源的面向对象程序设计的服务器端脚本语言Mac...
    间歇_持续阅读 318评论 0 1