当前位置:   article > 正文

Unity微信聊天框界面制作_unity聊天框ui搭建

unity聊天框ui搭建

【原理】

一个聊天界面主要由三个部分组成:内容区、可见区、滑动条

可见区在内容区上边,内容区会随着聊天内容变得非常长,但只有位于可见区的部分才能被看见,其他区域的看不见。通过滑动条上下移动内容区,看见的内容发生变化。

【步骤】

  • 新建一个UI->Panel,重命名为ChatPanel,添加Scroll Rect组件
  • 在ChatPanel下新建一个UI->Panel,重命名为ViewPort,添加Mask组件
  • 在ChatPanel下新建一个UI->Scrollbar,Direction选择Bottom To Top
  • 在ViewPort下新建一个UI->Panel,移除Image组件,重命名为Content,调整其Anchor和Pivot
  • 调整ViewPort、Content、Scrollbar的Height一致

  •  给Scroll Rect组件复制如下

  •  创建聊天气泡
    • 效果如下

  •    在bubble上添加 ContentSizeFitter和Vertical Layout Group组件,使得bubble大小随文本大小改变。在Text上添加LayoutElement。效果如下

 

  •  创建右边的聊天气泡,效果如下:

  • 新建一个脚本,名为ChatPanelManager,挂在ChatPanel下

【脚本】

  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. public class ChatPanelManager : MonoBehaviour
  4. {
  5. public GameObject leftBubblePrefab;
  6. public GameObject rightBubblePrefab;
  7. private ScrollRect scrollRect;
  8. private Scrollbar scrollbar;
  9. private RectTransform content;
  10. [SerializeField]
  11. private float stepVertical; //上下两个气泡的垂直间隔
  12. [SerializeField]
  13. private float stepHorizontal; //左右两个气泡的水平间隔
  14. [SerializeField]
  15. private float maxTextWidth;//文本内容的最大宽度
  16. private float lastPos; //上一个气泡最下方的位置
  17. private float halfHeadLength;//头像高度的一半
  18. public void Init()
  19. {
  20. scrollRect = GetComponentInChildren<ScrollRect>();
  21. scrollbar = GetComponentInChildren<Scrollbar>();
  22. content = transform.Find("ViewPort").Find("Content").GetComponent<RectTransform>();
  23. lastPos = 0;
  24. halfHeadLength = leftBubblePrefab.transform.Find("head").GetComponent<RectTransform>().rect.height / 2;
  25. }
  26. public void AddBubble(string content, bool isMy)
  27. {
  28. GameObject newBubble = isMy ? Instantiate(rightBubblePrefab, this.content) : Instantiate(leftBubblePrefab, this.content);
  29. //设置气泡内容
  30. Text text = newBubble.GetComponentInChildren<Text>();
  31. text.text = content;
  32. if (text.preferredWidth > maxTextWidth)
  33. {
  34. text.GetComponent<LayoutElement>().preferredWidth = maxTextWidth;
  35. }
  36. //计算气泡的水平位置
  37. float hPos = isMy ? stepHorizontal / 2 : -stepHorizontal / 2;
  38. //计算气泡的垂直位置
  39. float vPos = - stepVertical - halfHeadLength + lastPos;
  40. newBubble.transform.localPosition = new Vector2(hPos, vPos);
  41. //更新lastPos
  42. Image bubbleImage = newBubble.GetComponentInChildren<Image>();
  43. float imageLength = GetContentSizeFitterPreferredSize(bubbleImage.GetComponent<RectTransform>(), bubbleImage.GetComponent<ContentSizeFitter>()).y;
  44. lastPos = vPos - imageLength;
  45. //更新content的长度
  46. if (-lastPos > this.content.rect.height)
  47. {
  48. this.content.sizeDelta = new Vector2(this.content.rect.width, -lastPos);
  49. }
  50. scrollRect.verticalNormalizedPosition = 0;//使滑动条滚轮在最下方
  51. }
  52. public Vector2 GetContentSizeFitterPreferredSize(RectTransform rect, ContentSizeFitter contentSizeFitter)
  53. {
  54. LayoutRebuilder.ForceRebuildLayoutImmediate(rect);
  55. return new Vector2(HandleSelfFittingAlongAxis(0, rect, contentSizeFitter),
  56. HandleSelfFittingAlongAxis(1, rect, contentSizeFitter));
  57. }
  58. private float HandleSelfFittingAlongAxis(int axis, RectTransform rect, ContentSizeFitter contentSizeFitter)
  59. {
  60. ContentSizeFitter.FitMode fitting =
  61. (axis == 0 ? contentSizeFitter.horizontalFit : contentSizeFitter.verticalFit);
  62. if (fitting == ContentSizeFitter.FitMode.MinSize)
  63. {
  64. return LayoutUtility.GetMinSize(rect, axis);
  65. }
  66. else
  67. {
  68. return LayoutUtility.GetPreferredSize(rect, axis);
  69. }
  70. }
  71. }

【测试脚本——按空格添加内容】

  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. public class test : MonoBehaviour
  4. {
  5. public ChatPanelManager cpm;
  6. private int count;
  7. private List<string> dialogue = new List<string>();
  8. void Start()
  9. {
  10. cpm.Init();
  11. dialogue.Add("永恒之星");
  12. dialogue.Add("永恒之星永恒之星");
  13. dialogue.Add("永恒之星永恒之星永恒之星");
  14. dialogue.Add("永恒之星永恒之星永恒之星永恒之星");
  15. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星");
  16. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
  17. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
  18. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
  19. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
  20. dialogue.Add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
  21. }
  22. void Update()
  23. {
  24. if (Input.GetKeyDown(KeyCode.Space))
  25. {
  26. cpm.AddBubble(dialogue[count],Random.Range(0,2)>0);
  27. count++;
  28. if (count > dialogue.Count-1)
  29. {
  30. count = 0;
  31. }
  32. }
  33. }
  34. }

【测试结果】

 【补充说明】

 这里核心是实现了聊天气泡内容的添加,至于头像和name,比较简单,我们可以在AddBubble方法中自己补充实现。

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号