如何在Android中以编程方式设置背景
设置背景:
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background); layout.setBackgroundResource(R.drawable.ready);
是做这件事的最好方法吗?
layout.setBackgroundResource(R.drawable.ready);
是正确的。
另一种实现方法是使用以下方法:
final int sdk = android.os.Build.VERSION.SDK_INT; if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) { layout.setBackgroundDrawable( getResources().getDrawable(R.drawable.ready) ); } else { layout.setBackground( getResources().getDrawable(R.drawable.ready)); }
但我认为这个问题是因为你正在尝试加载大图片而发生的。
这里是一个很好的教程如何加载大的位图。
更新:
getDrawable(int)在API级别22中已弃用
getDrawable(int )
现在在API级别22中已弃用。您应该使用支持库中的以下代码:
ContextCompat.getDrawable(context, R.drawable.ready)
如果你参考ContextCompat.getDrawable的源代码,它会给你这样的东西:
/** * Return a drawable object associated with a particular resource ID. * <p> * Starting in {@link android.os.Build.VERSION_CODES#LOLLIPOP}, the returned * drawable will be styled for the specified Context's theme. * * @param id The desired resource identifier, as generated by the aapt tool. * This integer encodes the package, type, and resource entry. * The value 0 is an invalid identifier. * @return Drawable An object that can be used to draw this resource. */ public static final Drawable getDrawable(Context context, int id) { final int version = Build.VERSION.SDK_INT; if (version >= 21) { return ContextCompatApi21.getDrawable(context, id); } else { return context.getResources().getDrawable(id); } }
关于ContextCompat的更多细节
从API 22开始,您应该使用getDrawable(int, Theme)
方法而不是getDrawable(int)。
更新:
如果您使用的是支持v4库,则以下对于所有版本都是足够的。
ContextCompat.getDrawable(context, R.drawable.ready)
您将需要在您的应用程序build.gradle中添加以下内容
compile 'com.android.support:support-v4:23.0.0' # or any version above
或者使用ResourceCompat,像下面的任何API:
import android.support.v4.content.res.ResourcesCompat; ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);
尝试这个:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
和API 16 <:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
RelativeLayout relativeLayout; //declare this globally
现在,在onCreate,onResume之类的任何函数中
relativeLayout = new RelativeLayout(this); relativeLayout.setBackgroundResource(R.drawable.view); //or whatever your image is setContentView(relativeLayout); //you might be forgetting this
您还可以设置任何图像的背景:
View v; Drawable image=(Drawable)getResources().getDrawable(R.drawable.img); (ImageView)v.setBackground(image);
如果您的背景现在在可绘制文件夹中,请尝试将图像从drawable移动到项目中的drawable-nodpi文件夹中。 这为我工作,似乎其他图像重新调整他们自己..
我正在使用minSdkVersion 16和targetSdkVersion 23以下是我的工作,它使用ContextCompat.getDrawable(context,R.drawable.drawable);
而不是使用:
layout.setBackgroundResource(R.drawable.ready);
而是使用:
layout.setBackground(ContextCompat.getDrawable(this, R.drawable.ready));
getActivity()
在一个片段中使用,如果从一个活动调用使用this
使用butterknife将可绘制资源绑定到一个variables,方法是将其添加到类的顶部(在任何方法之前)。
@Bind(R.id.some_layout) RelativeLayout layout; @BindDrawable(R.drawable.some_drawable) Drawable background;
然后在你的一个方法里面添加
layout.setBackground(background);
这就是你所需要的
if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) layout.setBackgroundDrawable(getResources().getDrawable(R.drawable.ready)); else if(android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP_MR1) layout.setBackground(getResources().getDrawable(R.drawable.ready)); else layout.setBackground(ContextCompat.getDrawable(this, R.drawable.ready));
试试这个代码:
Drawable thumb = ContextCompat.getDrawable(getActivity(), R.mipmap.cir_32); mSeekBar.setThumb(thumb);
试试看ViewCompat.setBackground(yourView , drawableBackground)