为什么setProgressBackgroundColor无法解决错误?

时间:2014-11-08 17:37:35

标签: java android

在这个例子中

SwipeRefreshLayout swipeLayout;
swipeLayout.setProgressBackgroundColor(android.R.color.holo_blue_bright);

但是在android studio中我得到了这个错误:
无法解析方法'setProgressBackgroundColor(int)'

但在android doc中这是一种公共方法!!
为什么我收到这个错误?!

2 个答案:

答案 0 :(得分:1)

请务必使用最新的支持lib版本(撰写本文时为v21)。例如。在gradle:

compile 'com.android.support:support-v4:21.0.0'

答案 1 :(得分:0)

让您导入SwipeRefreshLayout

import android.support.v4.widget.SwipeRefreshLayout;

并将支持库添加到您的项目中。