设置背景:
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background); layout.setBackgroundResource(R.drawable.ready);
是最好的方法吗?
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(ContextCompat.getDrawable(context, R.drawable.ready) ); } else { layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready)); }
但我认为出现此问题是因为你尝试加载大图像。 这是一个很好的教程,介绍如何加载大位图。
更新: API级别22中不推荐使用getDrawable(int)
getDrawable(int )现在API级别22中不推荐使用。你应该改用支持库中的以下代码:
getDrawable(int )
ContextCompat.getDrawable(context, R.drawable.ready)
如果你引用ContextCompat.getDrawable的源代码,它将为你提供以下信息:
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库,则对于所有版本而言,以下内容就足够了。
你将需要在应用程序build.gradle中添加以下内容
compile ‘com.android.support:support-v4:23.0.0’ # or any version above 或在以下任何API中使用ResourceCompat:
import android.support.v4.content.res.ResourcesCompat; ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);