AsyncLayout Inflation for Recyclerview
问题 I am working with two recyclerview in single screen(For android TV).Each recyclerview have complex layout item.And it's taking time to load.I worked with asynclayoutinflator in activities. AsyncLayoutInflater inflater = new AsyncLayoutInflater(this); inflater.inflate(R.layout.main, null, callback); I want to know whether there is any ways to achieve the same with recyclerview. Problem I am facing is onbindviewholder is getting called before asyncinflation finished. 回答1: import android.content