我的应用中的bg.jpg
文件夹中有2张图片bg2.jpg
和drawable-hdpi
。
我想要显示图片列表然后用户为app选择一张图片作为背景图片。
我可以在drawable-hdpi文件夹中获取文件列表
答案 0 :(得分:0)
谷歌 - > Android如何动态更改背景 - > 10000000结果 - >第一个结果 - > stackoverflow的朋友:
how to change the xml background in android dynamically?
LinearLayout root=(LinearLayout)findViewById(R.id.root);
if(select 1st picture)
{root.setBackgroundResource(R.drawable.bg_image1);}
else
{root.setBackgroundResource(R.drawable.bg_image2);}