I am using ButterKnife for my android project. I am able to bind all my views in fragment using Butterknife, but unable to setAdapter to my ListView using Butterknife. Though I can bind it up simply using
ListView.setAdapter(m_adapter)
but I want to do it using Butterknife only.
Any help ?
Note: I am not asking for binding views inside Adapter using Butterknife. What I am asking for is: How to set Adapter with ListView using Butterknife.