如何动态地设置相对布局背景图片

如何动态地设置相对布局背景图片

本文介绍了如何动态地设置相对布局背景图片?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何动态地设置相对布局的背景?
我的顶部相对布局,不能设置id

How to dynamically setting relative layout background?My relative layout at the top,can not be set the id

推荐答案

假设你有一个相对布局ID为 RelativeLayout的。您可以通过设置背景:

Say you have a relative layout with the ID relativeLayout. You can set the background by using:

RelativeLayout rLayout = (RelativeLayout) findViewById(R.id.relativeLayout);
Resources res = getResources(); //resource handle
Drawable drawable = res.getDrawable(R.drawable.newImage); //new Image that was added to the res folder

rLayout.setBackgroundDrawable(drawable);

这篇关于如何动态地设置相对布局背景图片?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 13:05