Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Caldroid,但在获取点击日期的背景颜色时遇到问题。我的听众看起来像这样:
listener = new CaldroidListener() { @Override public void onSelectDate(Date date, View view) { //HERE I WANT TO CHECK COLOR } };
如何在上面的监听器中检查点击日期的背景颜色?
尝试这个,
ColorDrawable buttonColor = (ColorDrawable)view.getBackground() int color = buttonColor.getColor(); if (color == android.R.color.white) { //color is white }