The below code is to find the view on the first position. How do I find the view on the last position?
TextView textView = (TextView)myRecyclerView.findViewHo
You can try this
TextView textView = (TextView) myRecyclerView.findViewHolderForAdapterPosition(myRecyclerView.getAdapter().getItemCount() - 1).itemView.findViewById(R.id.myTV);