Set mipmap image as linearLayout background programmatically

 

 

 

1
2
3
4
ll.setBackgroundResource(R.mipmap.my_image);
or
 
ll.setBackground(ResourcesCompat.getDrawable(getResources(), R.mipmap.my_image, null))

  

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Set mipmap image as linearLayout background programmatically
Asked 4 years, 4 months ago
Active 3 years, 8 months ago
Viewed 2k times
 
 
0
 
 
I have a .png image in mipmap directory. know I want to set this image as the linearLayout background programmatically. and after some processes remove it.
 
target SDK : 23
min SDK    : 14
which function shall I use?
 
this can change background color:
 
ll.setBackgroundColor(getResources().getColor(R.color.color_mtn));
but where is background image?
 
android
background-image
Share
Improve this question
Follow
edited Feb 27 '17 at 11:22
asked Feb 27 '17 at 11:13
 
Shima Erfan
30511 gold badge55 silver badges1717 bronze badges
l1.setBackgroundResource(getResources().getDrawable(R.mipmap.your_image)); – pankaj khedekar Feb 27 '17 at 11:20
Add a comment
2 Answers
 
6
 
ll.setBackgroundResource(R.mipmap.my_image);
or
 
ll.setBackground(ResourcesCompat.getDrawable(getResources(), R.mipmap.my_image, null))
Share
Improve this answer
Follow
answered Feb 27 '17 at 11:17
 
lelloman
12.8k55 gold badges5656 silver badges7777 bronze badges
Add a comment
 
0
 
Both are Working
 
iv_pic_image.setImageResource(R.mipmap.generic_product_4);
 
or
 
iv_pic_image.setImageDrawable(getResources().getDrawable(R.mipmap.generic_product_4));
Share
Improve this answer
Follow
answered Oct 30 '17 at 6:20
 
Keshav Gera
8,42611 gold badge5757 silver badges4444 bronze badges
Add a comment
Your Answer<br><br>https://stackoverflow.com/questions/42484360/set-mipmap-image-as-linearlayout-background-programmatically

  

  

posted @   a318013800  阅读(36)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
历史上的今天:
2019-07-01 volley使用AAAAA
2019-07-01 okHttp&volleyAAAAA
2019-07-01 用SharedPreferences保存List(Map(String, String))数据
2018-07-01 ubuntu16.04安装chrome谷歌浏览器 A
2016-07-01 android adb常用指令
点击右上角即可分享
微信分享提示