开发者

Customize android spinner

I am trying to customize spinner. I found this tutorial, http://www.gersic.com/blog.php?id=57 It looks great but I am finding some errors all of which is like the following

 error: No resource identifier found for attribute 'state_dropdown_showing' in package 'android'

and the xml which leads to this error is

<!-- DROPDOWN SHOWING-->             
<item android:state_first="true"
      android:state_dropdown_showing="true" 
      android:drawable="@drawable/btn_dropdown_down"
      />    
<item android:state_middle="true" 
      android:state_dropdown_showing="true" 
      android:drawable="@drawable/btn_dropdown_up_down"
      />             
<item android:state_last="true"
      android:state_dropdown_showing="true"  
      android:drawable="@drawable/btn_dropdown_up"
      />   
<item android:state_single="true"
      android:state_dropdown_showing="true"  
      android:drawable="@drawable/btn_dropdown_neither_up_down"
      />                     

<!-- DROPDOWN NOT SHOWING-->

<item android:state_first="true"
      android:state_dropdown_showing="false" 
      android:drawable="@drawable/btn_dropdown_right_only"
      />    
<item android:state_middle="true" 
      android:state_dropdown_showing="false" 
      android:drawable="@drawable/btn_dropdown_left_right_collapsed"
      />             
<item android:state_last="true"
      android:state_dropdown_showing="false"  
      android:drawable="@drawable/btn_dropdown_left_only"
      />   
<item android:state_single="true"
      android:state_dropdown_showing="false"  
      android:drawable="@drawable/btn_dropdown_neither"
      />    
开发者_JS百科

And I am not finding anything in the net relevant to this. I am at a fix now. I want to change the look and feel of the regular spinner with nice color background.

Anybody please guide me about customization of spinner.


android:state_dropdown_showing it is worked on after r15 version only..so update the android sdk tools version.it is hopefully helpful to all

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜