I have a RecyclerView with several items types. It looks like this:
RecyclerView
You can know where the new item has been inserted using list.indexOf(yourItem) on your list of items. Then you can call notifyItemInserted()
list.indexOf(yourItem)
notifyItemInserted()