325

设置背景:

RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);

是最好的方法吗?

4

15 回答 15

562

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) 现在在 API 级别 22


getDrawable(int )中已弃用。您应该使用支持库中的以下代码:

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

或者在任何 API 中使用 ResourceCompat,如下所示:

import android.support.v4.content.res.ResourcesCompat;
ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);
于 2012-09-21T01:23:56.193 回答
116

试试这个:

layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));

对于 API 16<:

layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
于 2012-09-21T01:09:00.770 回答
19
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
于 2013-12-08T09:36:11.157 回答
9

您还可以设置任何图像的背景:

View v;
Drawable image=(Drawable)getResources().getDrawable(R.drawable.img);
(ImageView)v.setBackground(image);
于 2015-07-28T13:11:33.867 回答
9

我正在使用 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

于 2016-03-30T10:36:40.973 回答
4

如果你使用 AndroidX,你应该使用:

AppCompatResources.getDrawable(context, R.drawable.your_drawable)

以前列出的方法已弃用。

于 2021-08-22T09:52:10.107 回答
2

如果您的背景现在在 drawable 文件夹中,请尝试将图像从 drawable 移动到项目中的 drawable-nodpi 文件夹。这对我有用,似乎其他图像是由他们自己重新调整的..

于 2014-04-17T12:44:29.057 回答
1

通过将 this 添加到类的顶部(在任何方法之前),使用黄油刀将可绘制资源绑定到变量。

@Bind(R.id.some_layout)
RelativeLayout layout;
@BindDrawable(R.drawable.some_drawable)
Drawable background;

然后在您的一种方法中添加

layout.setBackground(background);

这就是你所需要的

于 2016-09-22T13:54:53.010 回答
1
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));
于 2017-02-26T00:04:02.700 回答
1

试一试ViewCompat.setBackground(yourView, drawableBackground)

于 2017-05-19T10:32:18.563 回答
1

试试这个。

 int res = getResources().getIdentifier("you_image", "drawable", "com.my.package");
 preview = (ImageView) findViewById(R.id.preview);
 preview.setBackgroundResource(res);
于 2019-07-24T23:07:43.717 回答
1
setBackground(getContext().getResources().getDrawable(R.drawable.green_rounded_frame));
于 2020-02-23T08:45:26.540 回答
0

试试这个代码:

Drawable thumb = ContextCompat.getDrawable(getActivity(), R.mipmap.cir_32);
mSeekBar.setThumb(thumb);
于 2016-12-28T06:44:25.850 回答
0

我有 4 个用于启动画面的片段。我可以通过此代码更改片段来更改背景

screen_main=(ConstraintLayout)view.findViewById(R.id.screen_main);
    screen_main.setBackground(getContext().getResources().getDrawable(R.color.bg_screen1));
于 2022-01-26T06:54:01.360 回答
-1

在 app/res/ your_xml_layout_file .xml里面

  1. 为您的父布局分配一个名称。
  2. 转到您的 MainActivity 并通过调用 findViewById(R.id."given_name") 找到您的 RelativeLayout。
  3. 通过调用 setBackgroundColor() 方法,将布局用作经典对象。
于 2017-12-08T14:49:08.520 回答