When i use
AutoCompleteTextView search_edit = (AutoCompleteTextView) v.findViewById(R.id.auto_search);
search_edit.setDropDownAnimationStyle(R.style.MedicineListDropDown);
i get Cannot find method setDropDownAnimationStyle(int) but according to the android source code there is a public method
public void setDropDownAnimationStyle(int animationStyle) {
mPopup.setAnimationStyle(animationStyle);
}
so why am i getting error?