how to How to Replace text with a predetermined time example: at 12:00 text turns into afternoon, at 3:00 text changed to good evening? explanation please :)
my custom text :
public texttime(Context ct)
{
super(ct);
}
public texttime(Context ct,AttributeSet attrs)
{
super(ct,attrs);
//start
if(Time.is....(12:00)
{
setText("good afternoon");
}
}
thanks :)