Android: Make AutoCompleteTextView dropdown wrap to 2 lines or more

前端 未结 2 1559
小鲜肉
小鲜肉 2021-02-02 16:05

I am writing an Android app that uses an AutoCompleteTextView just like the API example. The problem is that my text is too long and needs to wrap when the dropdown occurs. I

2条回答
  •  旧时难觅i
    2021-02-02 16:50

    easy way :
    adapter = new ArrayAdapter(getApplicationContext(), android.R.layout.two_line_list_item,android.R.id.text1,....);

    android.R.layout.two_line_list_item this is easy change.

提交回复
热议问题