我有一个与Android版本10(GINGERBREAD_MR1)到17(JELLY_BEAN_MR1)兼容的项目。
因此,我希望将setBackgroundDrawable
用于版本16或更高版本中低至16和setBackground
的版本。
我试过这个:
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
subMessageFromToLinearLayout.setBackgroundDrawable(null);
} else {
subMessageFromToLinearLayout.setBackground(null);
}
但是,Eclipse给了我:
subMessageFromToLinearLayout.setBackgroundDrawable(null);
的警告:
“不推荐使用View类型的方法setBackgroundDrawable(Drawable)”
subMessageFromToLinearLayout.setBackground(null);
的错误:
“调用需要API级别16(当前最小值为10):android.widget.LinearLayout #setBackground”
我如何修复此错误,以便根据正在运行的Android版本使用这两行?
提前致谢。
答案 0 :(得分:9)
一般来说,最强大的方式是使用class lazy loading:
static boolean isSDK17()
{
return android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1;
}
if (isSDK17())
xyMode_SDK17.setXyMode(context, mode);
else
xyMode_SDK8.setXyMode(context, mode);
@TargetApi(17)
public class xyMode_SDK17
{
static void setXyMode(Context context, boolean mode)
{...}
}
public class xyMode_SDK8
{
@SuppressWarnings("deprecation")
static void setXyMode(Context context, boolean mode)
{...}
}
答案 1 :(得分:1)
你见过
吗?ActionBarSherlock gives tons of "Call requires API level 11 (current min is 7)" errors
Android - set layout background programmatically
您可以使用@TargetApi(16)和@SuppressWarnings(&#34;已弃用&#34;)进行标记。
如果错误仍然存在,请尝试清理项目或重新启动eclipse。
&#34;啊我知道.setBackgroundDrawable(Drawable)方法,但对我来说IDE与api 16的要求有相同的错误。我正在使用Eclipse,它在重新打开ide并清理代码之后似乎是一个错误。比你非常抱歉和#34 ;.