码迷,mamicode.com
首页 > 移动开发 > 详细

android_设置backgroud拉伸问题

时间:2014-09-16 14:22:33      阅读:227      评论:0      收藏:0      [点我收藏+]

标签: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_设置backgroud拉伸问题

标签:android   style   http   color   io   ar   sp   问题   on   

原文地址:http://blog.csdn.net/zhpforever/article/details/39314799

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!