在android中用户更改背景图像

时间:2014-05-19 15:49:39

标签: android background

我的应用中的bg.jpg文件夹中有2张图片bg2.jpgdrawable-hdpi

我想要显示图片列表然后用户为app选择一张图片作为背景图片。

我可以在drawable-hdpi文件夹中获取文件列表

1 个答案:

答案 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);}