设置背景:
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
是最好的方法吗?
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
是最好的方法吗?
Answers:
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中弃用了。您应该改用支持库中的以下代码:
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
或在以下任何API中使用ResourceCompat:
import android.support.v4.content.res.ResourcesCompat;
ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);
if(buttonBackground.equals(R.drawable.myDrawable))
在哪里Drawable buttonBackground = myButton.getBackground();
得到此错误: snag.gy/weYgA.jpg
myActivity.getTheme()
方法的最新版本,而不是空参数:myView.setBackground( getResources().getDrawable(R.drawable.my_background, activity.getTheme()));
AppCompatResources.getDrawable(this.getContext(), resId)
,Google已经在AppCompat*
小部件/视图中实现了它,例如:android.support.v7.widget.AppCompatCheckBox
尝试这个:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
对于API 16 <:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
getResources().getDrawable()
。正确的代码layout.setBackgroundResource(R.drawable.ready);
就像所使用的OP一样。这里的问题来自位图的大小。
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);
(.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
内部代码
如果您的背景现在在drawable文件夹中,请尝试将图像从项目中的drawable移到drawable-nodpi文件夹。这对我有用,似乎其他图像由它们自己重新缩放。
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));
试试看 ViewCompat.setBackground(yourView, drawableBackground)
setBackground(getContext().getResources().getDrawable(R.drawable.green_rounded_frame));
在app / res / your_xml_layout_file .xml内部
remoteViews.setInt(R.id.btn_start,"setBackgroundResource", R.drawable.ic_button_start);