有一种方法可以在android中更改autocompletetextview下拉列表的文本大小。在我的过程中,我想以编程方式进行。如果有办法,请教我怎么做。 感谢。
答案 0 :(得分:1)
是的,有一种方法可以增加下拉列表的大小:
以下是方法。
setDropDownWidth(int width);
答案 1 :(得分:-1)
试试这个:
AutoCompleteTextViewStyle autoAddItem = (AutoCompleteTextViewStyle) findViewById(R.id.autoAddItem); //Customized AutoCompleteTextView
final List<HashMap<String,String>> aList = new ArrayList<HashMap<String,String>>();
String[] from = { "txt"};
int[] to = {R.id.txtItemName};
SimpleAdapter shopItemAdapter = new SimpleAdapter(getApplicationContext(), aList, R.layout.custom_auto_complete_drop_down, from, to);
//R.layout.custom_auto_complete_drop_down is the customized layout for dropdown item of your autocompletetextview
//You can set text size on your XML layout
autoAddItem.setAdapter(shopItemAdapter);