AutoCompleteTextView background/foreground color

后端 未结 7 834
再見小時候
再見小時候 2020-12-10 05:10

I am working on AutoCompleteTextView.Its working fine but the dropdown text is always white text on white background. this picture explain my problem

picture explain

7条回答
  •  失恋的感觉
    2020-12-10 05:49

    This question might be old but I believe this is very important for me to share. I had been experiencing the same problem as OP but it is because I was using 'getApplicationContext()' in place of 'this'


    Wrong

    ArrayAdapter adapter = new ArrayAdapter
                    (getApplicationContext(), android.R.layout.simple_list_item_1, PLACES);
    


    Correct

    ArrayAdapter adapter = new ArrayAdapter
                    (this, android.R.layout.simple_list_item_1, PLACES);
    

提交回复
热议问题