I would like to resize the autocomplete drop-down list item to a smaller one. Any change I make to textview.settextsize only affects the value in the field, not the drop-down list!

I add list items dynamically and my adapter is set to resource
adapterForFromAutoText.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
Should I add my own resource to customize the font style, if that matters, I use adapterForFromAutoText.add(displayName);to dynamically add data through the adapter.
source
share