自定义seekbar中,thumb被覆盖掉一部分问题

(图一)            (图二)       (图三)

 

做一个自定义的seekbar,更改其背景图片:

 

定义progressDrawable即为背景图片。thumb为滑块图片

如上定义xml文件,启动程序,生成如图一。 thumb滑块不能显示完全,一部分被隐藏掉。

 

增加属性:

android:thumbOffset="0dip"    

即可实现thumb不被覆盖,即最下方位置如图三所示,不会出现图一情况。

网上有个竖直的VerticalSeekBar,简单说一下他的使用:

当滑块的大小比下面的背景大时,此时要设置

                android:minHeight="19dip"
                android:maxHeight="19dip"

19dip即为seek_img图片的宽度。

而控件的layout_width值即位滑块的width和height值

 

 

这么个小问题,用了我半天时间才搞出来。网上资源太少了,给大家分享一下。

 



   
   
      
           
                                android:startColor="#ff364956"
                    android:centerColor="#ff444444"
                    android:centerY="0.75"
                    android:endColor="#ff00112e"
                    android:angle="90"
            />
       

   

   
   
      
           
               
                                        android:startColor="#80364956"
                        android:centerColor="#802f67a6"
                        android:centerY="0.75"
                        android:endColor="#8000112e"
                        android:angle="270"
                />
           

       

   

   
   
       
           
               
                                        android:startColor="#ff9ee5ff"
                        android:centerColor="#ff9ee5ff"
                        android:centerY="0.75"
                        android:endColor="#ff9ee5ff"
                        android:angle="90"
                />
           

       

   

   


你可能感兴趣的:(android初阶篇)