I would like to use ButterKnife to bind my views inside listView adpater.
I tried this, but i can not simply use my \"spinner\" var.
public class WarmSpi
You should pass your view to ButterKnife to bind it first.
@Override public View getView(int position, View convertView, ViewGroup parent) { View v = LayoutInflater.from(context).inflate(R.layout.item_spinner, null); ButterKnife.bind(this,v); return v; }
Then you will have access to your Views.