<selector xmlns:androID="http://schemas.androID.com/apk/res/androID" > //normal button with background my_button.png <item androID:state_enabled="true" androID:drawable="@drawable/my_button" //my_button.png /> //pressed button with background my_button.png overlayed by 50% black <item androID:state_pressed="true" androID:state_enabled="true" > <relativeLayout androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"> <bitmap androID:src="@drawable/my_button"/> <color androID:color="#00000088"/> </relativeLayout> </item> </selector>
有没有办法呢?还是我必须有另一个png文件?
解决方法 在my_button_bg.xml中:<selector xmlns:androID="http://schemas.androID.com/apk/res/androID"> <item androID:drawable="@drawable/button_pressed" androID:state_pressed="true"/> <item androID:drawable="@drawable/button_normal"/></selector>
button_normal是一个png
button_pressed是一个xml:
<?xml version="1.0" enCoding="utf-8"?><@R_100_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID" > <item androID:drawable="@drawable/button_normal"/> <item androID:drawable="@color/btn_bg_pressed_mask"/></@R_100_3419@>
其中btn_bg_pressed_mask是一种颜色:
<color name="btn_bg_pressed_mask">#19000000</color>总结
以上是内存溢出为你收集整理的android – 由png和overlay组成的XML drawable全部内容,希望文章能够帮你解决android – 由png和overlay组成的XML drawable所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)