in app/src/main/java/org/apache/fineract/utils/StatusUtils.java [101:129]
public static void setLoanAccountStatus(LoanAccount.State state, AppCompatImageView imageView,
Context context) {
switch (state) {
case CREATED:
imageView.setColorFilter(
ContextCompat.getColor(context, R.color.blue));
break;
case PENDING:
imageView.setColorFilter(
ContextCompat.getColor(context, R.color.blue));
break;
case APPROVED:
imageView.setColorFilter(
ContextCompat.getColor(context, R.color.deposit_green));
break;
case ACTIVE:
imageView.setColorFilter(
ContextCompat.getColor(context, R.color.deposit_green));
break;
case CLOSED:
imageView.setColorFilter(
ContextCompat.getColor(context, R.color.red_dark));
break;
}
}