gpt4 book ai didi

java - 如何在 Android 中以编程方式设置背景可绘制对象

转载 作者:bug小助手 更新时间:2023-10-28 10:39:54 26 4
gpt4 key购买 nike

设置背景:

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(ContextCompat.getDrawable(context, R.drawable.ready) );
} else {
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
}

但我认为出现问题是因为您尝试加载大图像。
Here是一个很好的教程如何加载大的位图。

更新:
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

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

import android.support.v4.content.res.ResourcesCompat;
ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);

关于java - 如何在 Android 中以编程方式设置背景可绘制对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12523005/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com