设置背景信息:
RelativeLayout layout = (RelativeLayout) findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
这是最好的方法吗?
设置背景信息:
RelativeLayout layout = (RelativeLayout) findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
这是最好的方法吗?
当前回答
试试这个:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
对于API 16<:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
其他回答
试试这个。
int res = getResources().getIdentifier("you_image", "drawable", "com.my.package");
preview = (ImageView) findViewById(R.id.preview);
preview.setBackgroundResource(res);
试试下面的代码:
Drawable thumb = ContextCompat.getDrawable(getActivity(), R.mipmap.cir_32);
mSeekBar.setThumb(thumb);
试试这个:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
对于API 16<:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
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));
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));
}
但我认为出现问题是因为你试图加载大图像。这是一个很好的教程如何加载大的位图。
更新: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)。
更新: 如果您使用的是support 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);