AutoCompleteTextView/arrière-plan couleur de premier plan

Je suis en train de travailler sur AutoCompleteTextView.Son travail très bien, mais la liste déroulante texte est toujours un texte blanc sur fond blanc.
cette image d'expliquer mon problème

image d'expliquer mon problème

AutoCompleteTextView/arrière-plan couleur de premier plan

XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000"
    >
    <!-- <AutoCompleteTextView  -->
    <AutoCompleteTextView
        android:id="@+id/text"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:hint="Tapez votre 1texte"
        android:textColor="#000"        
        />
</LinearLayout>

Java:

view = (AutoCompleteTextView)findViewById(R.id.text);        
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,data);
adapter.setDropDownViewResource(R.drawable.ic_action_search);//dd
view.setAdapter(adapter);
Image lien ne fonctionne pas.
c'est un travail pour moi
sleu7fan.3owl.com/index.png
sleu7fan . 3owl . com / index . png
Essayez de définir l'arrière-plan de la AutoCompleateTextView de noir ainsi et voir si cela aide.

OriginalL'auteur AHméd Net | 2012-08-02