Why Setprogressbackgroundcolor Can Not Resolve Error?
In this example SwipeRefreshLayout swipeLayout; swipeLayout.setProgressBackgroundColor(android.R.color.holo_blue_bright); but in android studio I get this error : Can not Resolve
Solution 1:
Be sure to use latest support lib version (v21 at the time of writing). E.g. in gradle:
compile'com.android.support:support-v4:21.0.0'
Post a Comment for "Why Setprogressbackgroundcolor Can Not Resolve Error?"