标签:android style http color io ar sp 问题 on
setBackgroundResource()或者在xml设置android:background属性时,将你的background以XML Bitmap的形式定义,如下:
<!--?xml version="1.0" encoding="utf-8"?--> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:id="@id/toolbar_bg_bmp" android:src="@drawable/toolbar_bg" android:tilemode="disabled" android:gravity="top"> </bitmap>
调用如下:
imageButton.setBackgroundResource(R.drawable.toolbar_bg_bmp)
或者
若背景图片有多种状态,还可参照toolbar_bg_selector.xml:
<!--?xml version="1.0" encoding="utf-8"?--> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true"> <bitmap android:src="@drawable/toolbar_bg_sel" android:tilemode="disabled" android:gravity="top"> </bitmap></item> <item> <bitmap android:src="@drawable/toolbar_bg" android:tilemode="disabled" android:gravity="top"> </bitmap></item> </selector>
标签:android style http color io ar sp 问题 on
原文地址:http://blog.csdn.net/zhpforever/article/details/39314799