How to change spinner text color

后端 未结 8 1992
抹茶落季
抹茶落季 2020-12-10 02:50

I saw many topics about how to change spinner\'s text color,but i couldnt understand how to use

spinner_item.xml



        
8条回答
  •  孤城傲影
    2020-12-10 03:35

    Spinner spnCategory= (Spinner)findViewById(R.id.my_spinner);
    ..
    
    ArrayAdapter adptSpnCategory = new ArrayAdapterthis,R.layout.custom_spinner_item, alCategoryName);
    adptSpnCategory.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spnCategory.setAdapter(adptSpnCategory);
    spnCategory.setOnItemSelectedListener(new OnItemSelectedListener() 
    {
     public void onItemSelected(AdapterView arg0, View arg1,int arg2, long arg3) 
     {
     }
     public void onNothingSelected(AdapterView arg0) 
     {
     }
    });
    

提交回复
热议问题