Android add arrow image to spinner

后端 未结 5 814
梦谈多话
梦谈多话 2020-12-14 08:49

I have created a background drawable that I use for a spinner. I would like to now but an arrow image inside this background. I have tried things like android:drawableRight=

5条回答
  •  太阳男子
    2020-12-14 09:04

    Create an XML in a drawable folder with any name for example spinner_bg.xml and add this following lines

    
    
      
        
          
            
              
    
              
    
              
    
              
            
          
          
            
            // you can use any other image here, instead of default_holo_dark_am
          
        
      
    
    

    Add the following lines to your styles.xml which is inside values folder

    
    

    Now add this style to your spinner as

    
    

提交回复
热议问题