Exemplo n.º 1
0
 private void SetRecyclerViewAdapters()
 {
     try
     {
         ChatBoxRecylerView.SetItemAnimator(null);
         MAdapter       = new UserMessagesAdapter(this);
         MLayoutManager = new LinearLayoutManager(this);
         ChatBoxRecylerView.SetLayoutManager(MLayoutManager);
         ChatBoxRecylerView.SetAdapter(MAdapter);
         MAdapter.SetOnClickListener(this);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }