I am running glass XE 19.1,I am trying to use layout inflator the XML file does exist under layouts folder but the file is never recognized.
card_countdown cannot be resolved is the error I get.
public CountDownView(final Context context, final AttributeSet attrs,
final int style) {
super(context, attrs, style);
LayoutInflater.from(context).inflate(R.layout.card_countdown, this);
this.mSecondsView = (TextView) this.findViewById(R.id.seconds_view);
}