I am using Caldroid library for my project and I am using
args.putBoolean(CaldroidFragment.SQUARE_TEXT_VIEW_CELL, false);
to use my custom normal cell for month's days.
But when I am trying to set background for a current day, using,
if (caldroidFragment != null) {
caldroidFragment.setBackgroundResourceForDate(R.drawable.current_date,
minDate);
caldroidFragment.setTextColorForDate(R.color.purple, minDate);
}
I also try in normal_cell_view.xml
android:layout_height="50dp"
But it shows like
How to set it look proper ?