Kotlin高仿微信-第52篇-搜索好友

news2025/1/11 14:11:53

  Kotlin高仿微信-项目实践58篇详细讲解了各个功能点,包括:注册、登录、主页、单聊(文本、表情、语音、图片、小视频、视频通话、语音通话、红包、转账)、群聊、个人信息、朋友圈、支付服务、扫一扫、搜索好友、添加好友、开通VIP等众多功能。

Kotlin高仿微信-项目实践58篇,点击查看详情

效果图:

实现代码:

<?xml version="1.0" encoding="utf-8"?>
<layout>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    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:background="@drawable/wc_base_bg">

    <androidx.appcompat.widget.AppCompatEditText
        android:id="@+id/contacts_search_phone"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:layout_marginStart="10dp"
        android:layout_marginTop="10dp"
        android:paddingLeft="12dp"
        android:drawableLeft="@android:drawable/ic_search_category_default"
        android:layout_width="300dp"
        android:layout_height="48dp"
        android:background="@color/white"
        android:hint="账户/手机号"/>

    <TextView
        android:id="@+id/contacts_search_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="@+id/contacts_search_phone"
        app:layout_constraintBottom_toBottomOf="@+id/contacts_search_phone"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginEnd="10dp"
        android:padding="12dp"
        android:textColor="@color/blue"
        android:textSize="18sp"
        android:text="取消"/>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/contacts_search_result_layout"
        app:layout_constraintTop_toBottomOf="@+id/contacts_search_phone"
        app:layout_constraintStart_toStartOf="parent"
        android:layout_margin="20dp"
        android:visibility="gone"
        android:background="@color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <androidx.appcompat.widget.AppCompatImageView
            android:id="@+id/contacts_search_result_icon"
            app:layout_constraintTop_toTopOf="@+id/contacts_search_result_layout"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/contacts_default_icon"/>

        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/contacts_search_result_txt"
            app:layout_constraintStart_toEndOf="@+id/contacts_search_result_icon"
            app:layout_constraintTop_toTopOf="@+id/contacts_search_result_icon"
            app:layout_constraintBottom_toBottomOf="@+id/contacts_search_result_icon"
            android:layout_marginLeft="20dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/black"
            android:textSize="16sp"
            android:text="搜索:185xxxxxxxxx"/>

    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/contacts_search_recycler_view"
        app:layout_constraintTop_toBottomOf="@+id/contacts_search_result_layout"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_width="match_parent"
        android:layout_margin="10dp"
        android:layout_height="0dp"/>

</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

/**
 * Author : wangning
 * Email : maoning20080809@163.com
 * Date : 2022/4/21 21:18
 * Description : 根据账户搜索用户
 */
class SearchFriendsFragment : BaseDataBindingFragment<WcFragmentContactsSearchBinding>() {

    override fun getLayoutRes() = R.layout.wc_fragment_contacts_search

    private val xmppViewModel : XmppViewModel by viewModels()
    private val userViewModel : UserViewModel by viewModels()
    private val contactViewModel : ContactsViewModel by viewModels()

    private var adapter : SearchContactsAdapter? = null
    //好友列表
    private var contactsList : MutableList<ContactsBean>? = null
    private var navController : NavController? = null

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        super.builder().setTitleContent("")
        navController = findNavController()
        contacts_search_cancel.setOnClickListener {
            Navigation.findNavController(it).popBackStack()
        }

        var account = DataStoreUtils.getAccount()
        contacts_search_result_layout.setOnClickListener {
            TagUtils.d("搜索查询:${contacts_search_phone.text.toString()}")
            //xmppViewModel.searchUserByName(contacts_search_phone.text.toString())
            userViewModel.getUserLikeAccount(account, contacts_search_phone.text.toString())
        }

        contacts_search_phone.addTextChangedListener(object : TextWatcher{
            override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
            }

            override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
                //TagUtils.d("onTextChanged ${s}, , count = ${count}, length = ${s?.length}")
                if(s?.length!! > 0){
                    var result = getString(R.string.wc_search_friend_tips, s)
                    contacts_search_result_layout.visibility = View.VISIBLE
                    contacts_search_result_txt.text = result
                } else {
                    contacts_search_result_layout.visibility = View.GONE
                    contacts_search_recycler_view.visibility = View.GONE
                }
            }

            override fun afterTextChanged(s: Editable?) {
            }
        })

        userViewModel.getUserListLiveData.observe(viewLifecycleOwner){
            if(it == null || it.size < 1){
                ToastUtils.makeText(R.string.search_list_empty)
            } else {
                contacts_search_recycler_view.visibility = View.VISIBLE
                adapter?.refresh(it)
            }
        }

        contactViewModel.getContactsList(account)
        contactViewModel.contactsListLiveData.observe(viewLifecycleOwner){
            contactsList = it
        }

        /*xmppViewModel.userListDataLiveData.observe(viewLifecycleOwner){
            contacts_search_recycler_view.visibility = View.VISIBLE
            adapter?.refresh(it)
        }*/

        adapter = SearchContactsAdapter()
        var linearLayoutManager = LinearLayoutManager(activity)
        linearLayoutManager.orientation = LinearLayoutManager.VERTICAL
        contacts_search_recycler_view.layoutManager = linearLayoutManager
        contacts_search_recycler_view.adapter = adapter
        adapter?.setOnItemClickInterface(object : SearchContactsAdapter.OnItemClickInterface{
            override fun onItemClick(userBean: UserBean) {
                SoftInputUtils.hideSoftInput(contacts_search_result_layout)
                navController?.popBackStack(R.id.nav_contacts_add_friends, true)
                if(isFriend(userBean.account)) {
                    //如果是好友,直接跳转到聊天页面
                    var bundle = bundleOf(ChatFragment.USER_ID to userBean.account)
                    navController?.navigate(R.id.nav_chat, bundle)
                } else {
                    val bundle = bundleOf("userbean" to userBean)
                    navController?.navigate(R.id.action_contacts_search_friends_details, bundle)
                }

            }
        })

    }

    private fun isFriend(searchAccount : String) : Boolean{
        var resultList = contactsList?.filter {
            it.toAccount.equals(searchAccount)
        }
        return resultList?.size!! > 0
    }

}

/**
 * Author : wangning
 * Email : maoning20080809@163.com
 * Date : 2022/4/22 17:51
 * Description :
 */
class SearchContactsAdapter : RecyclerView.Adapter<SearchContactsAdapter.SearchViewHolder>(){

    private var userList = ArrayList<UserBean>()
    private var onItemClickInterface :OnItemClickInterface? = null
    fun setOnItemClickInterface(onItemClickInterface :OnItemClickInterface?){
        this.onItemClickInterface = onItemClickInterface
    }

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): SearchViewHolder {
        var view = LayoutInflater.from(parent.context).inflate(R.layout.wc_fragment_contacts_search_item, parent, false)
        return SearchViewHolder(view)
    }

    override fun onBindViewHolder(holder: SearchViewHolder, position: Int) {
        var userBean = userList.get(position)
        holder.account.text = BaseUtils.getString(R.string.wc_search_friend_account, userBean.account)

        holder.account.setOnClickListener {
            onItemClickInterface?.onItemClick(userBean)
        }
    }

    fun refresh(userList : ArrayList<UserBean>) {
        if(userList == null || userList.size == 0){
            this.userList = ArrayList<UserBean>()
        } else {
            this.userList = userList
        }
        notifyDataSetChanged()
    }

    override fun getItemCount(): Int  = userList?.size

    class SearchViewHolder(itemView : View) : RecyclerView.ViewHolder(itemView) {
        var account = itemView.findViewById<TextView>(R.id.contacts_search_item_account)
    }

    interface OnItemClickInterface{
        abstract fun onItemClick(userBean: UserBean)
    }
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/54018.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

HTTP

文章目录一、HTTP 基本概念GET 与 POSTHTTP 特性HTTP 与 HTTPSHTTP/1.1、HTTP/2、HTTP/3 演变HTTP/1.1如何优化如何避免发送 HTTP 请求&#xff1f;如何减少 HTTP 请求次数减少重定向请求次数合并请求延迟发送请求如何减少 HTTP 响应的数据⼤⼩&#xff1f;⽆损压缩有损压缩HTT…

YGG 和 BlockchainSpace 举办全国最大的 Web3 活动:Philippine Web3 Festival

2022 年 11 月 14 日至 18 日&#xff0c;Yield Guild Games (YGG) 和 BlockchainSpace 在菲律宾共同举办了迄今为止最大的 web3 活动&#xff0c;汇集了来自世界各地的游戏玩家、建设者、投资者、开发者、教育工作者和艺术家加入 web3 的应用。该活动吸引了来自 web3 社区的数…

计算机网络——TCP/IP模型

OSI参考模型与TCP/IP标准模型 OSI模型先出现理论&#xff0c;并没有实践&#xff0c;只是一个法定参考模型。 TCP/IP模型出现早&#xff0c;应用早。TCP/IP模型其实是先诞生一个协议栈。 再出现TCP/IP参考模型 TCP/IP模型中的网络接口层其实是把数据链路层和物理层进行合并了…

电脑桌面文件不见了怎么恢复?

众所周知&#xff0c;我们都会在电脑桌面上放置各种文件、文件夹等&#xff0c;这样很容易造成文件堆积过多&#xff0c;桌面杂乱无章&#xff0c;影响查找文件速度。这不可避免的要对电脑桌面进行整理&#xff0c;但有时候我们会出现重要文件突然就找不到了&#xff0c;这时电…

RabbitMQ延时队列

延时队列内部是有序的&#xff0c;最重要的特性就是延时&#xff0c;延时队列中的元素是希望在指定时间到了以后或之前取出和处理&#xff0c;简单来说&#xff0c;延时队列就是用来存放需要在指定时间被处理的元素的队列。 使用场景 订单在十分钟之内未支付则自动取消新创建…

新上线软件需不需要防御?

导语&#xff1a;随着5G时代到来和ipv6的普及&#xff0c;攻击者手段层出不穷&#xff0c;从一开始简单的DDOS分布式拒绝服务&#xff0c;后到蔓延ACK 从不同协议通讯层面发起的攻击&#xff0c;现在CC请求类型攻击&#xff0c;已经可以绕过域名验证&#xff0c;以及模拟正常用…

css实现价格降价线

比较简单&#xff0c;直接上代码 <div class"container"><div>今日价格&#xff1a;$9.99</div><div>商品原价&#xff1a;<span class"price">$49.99</span></div> </div>.price {text-decoration: lin…

GJB 5000B二级-II实施基础

本实践域为新增实践域   思想:以GJB5000A的共用过程域中不乏实践为基础进行提炼并提升,结合各个行业的优秀实践和行业特点,坚持问题导向,使标准更具有指导性和可操作性;充分借鉴GJB9001C中:“4组织环境”、“7支持”的相关内容,形成实施基础实践域。本实践域强调突出重…

让你真实的看见 TCP 三次握手和四次挥手到底是什么样!

前言 TCP 建立连接是三次握手&#xff0c;而断开连接是四次挥手。 但事实上从你打开这篇文章&#xff0c;到关掉这篇文章&#xff0c;你是看不见这个过程的。 那 TCP 建立连接和断开连接的过程是不是真的如大多数文章所描绘的一样&#xff1f; 带着这些疑问&#xff0c;那就…

揭晓:一条SQL语句的执行过程是怎么样的?

数据库系统能够接受 SQL 语句&#xff0c;并返回数据查询的结果&#xff0c;或者对数据库中的数据进行修改&#xff0c;可以说几乎每个程序员都使用过它。 而 MySQL 又是目前使用最广泛的数据库。所以&#xff0c;解析一下 MySQL 编译并执行 SQL 语句的过程&#xff0c;一方面…

seata在nacos上注册IP为内网,启动时加了 -h 外网ip还是显示内网?

版本&#xff1a; 部署位置&#xff1a;Linux seata版本&#xff1a;1.5.1 问题&#xff1a; seata在nacos上注册IP为内网&#xff0c;启动时加了 -h 外网ip还是显示内网? 解决&#xff1a; 该版本存在-h失效问题&#xff0c;后面1.5.2就修掉-h失效的问题了。 可以在sea…

Web前端大作业——城旅游景点介绍(HTML+CSS+JavaScript) html旅游网站设计与实现

&#x1f468;‍&#x1f393;学生HTML静态网页基础水平制作&#x1f469;‍&#x1f393;&#xff0c;页面排版干净简洁。使用HTMLCSS页面布局设计,web大学生网页设计作业源码&#xff0c;这是一个不错的旅游网页制作&#xff0c;画面精明&#xff0c;排版整洁&#xff0c;内容…

更新UpdatePanel外部控件

目前处理项目问题的时候&#xff0c;发现有个功能有问题。 界面大致如下 版本radiobuttonlist&#xff08;在UpdatePanel外&#xff09; UpdatePanel 上传按钮 文件列表 UpdatePanel 正常逻辑&#xff1a; 上传文件后&#xff0c;文件列表会刷新。&#xff08;这块没问…

[附源码]Python计算机毕业设计Django家庭教育app

项目运行 环境配置&#xff1a; Pychram社区版 python3.7.7 Mysql5.7 HBuilderXlist pipNavicat11Djangonodejs。 项目技术&#xff1a; django python Vue 等等组成&#xff0c;B/S模式 pychram管理等等。 环境需要 1.运行环境&#xff1a;最好是python3.7.7&#xff0c;我…

[附源码]Python计算机毕业设计Django惠农微信小程序论文

项目运行 环境配置&#xff1a; Pychram社区版 python3.7.7 Mysql5.7 HBuilderXlist pipNavicat11Djangonodejs。 项目技术&#xff1a; django python Vue 等等组成&#xff0c;B/S模式 pychram管理等等。 环境需要 1.运行环境&#xff1a;最好是python3.7.7&#xff0c;…

B树(BTree)与B+树(B+Tree)

B树是什么&#xff1f; B树是一种多路平衡查找树 平衡&#xff0c;指的是子树高度相同&#xff08;即所有叶子结点均在同一层&#xff09;&#xff0c;即每个结点的平衡因子均等于0 多路&#xff0c;就是它除了根结点外&#xff08;之所以根结点的分叉数不限定&#xff0c;是…

【java】多线程

文章目录进程和线程继承Thread类的方式实现多线程设置和获取线程的名称线程优先级 线程调度控制线程线程的生命周期多线程的实现方式案例--卖票同步方法解决数据安全问题线程安全的类Lock锁生产者消费者模式概述案例进程和线程 继承Thread类的方式实现多线程 MyThread.java pa…

懵了,阿里一面就被虐了,幸获内推华为技术四面,成功拿到offer

上个月&#xff0c;哥们从某小厂离职&#xff0c;转投阿里云&#xff0c;简历优秀&#xff0c;很顺利地拿到了面试通知&#xff0c;但之后的进展却让哥们怀疑人生了&#xff0c;或者说让哥们懵逼的是&#xff0c;面试阿里云居然第一面就被吊打&#xff1f;让哥们开始怀疑自己&a…

【OpenCV-Python】教程:3-12 模板匹配

OpenCV Python 模板匹配 【目标】 利用模板匹配的方法寻找目标cv2.matchTemplate(), cv2.minMaxLoc() 【理论】 模板匹配是一个寻找大图像中目标位置的方法。OpenCV提供了函数 cv2.matchTemplate() 函数&#xff0c;通过在输入图像上滑动模板&#xff0c;将目标与滑动处的图…

[附源码]计算机毕业设计JAVA校园淘宝节系统

[附源码]计算机毕业设计JAVA校园淘宝节系统 项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; SSM mybatis …