Scale background image to wrap content of layout

前端 未结 9 1835
执笔经年
执笔经年 2020-12-23 17:45

I have a layout that contains some text fields and has a background image that\'s displayed at the top of my activity. I\'d like the background image to scale to wrap the c

9条回答
  •  生来不讨喜
    2020-12-23 18:20

    Create a drawable xml, say mybackground.xml

    
    
    

    Then in your RelativeLayout in the first code snippet use

    android:background="@drawable/mybackground"
    

提交回复
热议问题