Skip to content

Indicators

  • Set the hex color code for the visual elements (one for all):
DocumentReader.Instance().customization().edit().setTintColor("#ff0000").apply();
DocumentReader.Instance().customization().edit().setTintColor("#ff0000").apply()

  • Set the hex color code for the loading indicator(s). You can see it if you tap the Capture button:
DocumentReader.Instance().customization().edit().setActivityIndicatorColor("#ff0000").apply();
DocumentReader.Instance().customization().edit().setActivityIndicatorColor("#ff0000").apply()
  • Adjust the size of the loading indicator(s). You can see it if you tap the Capture button:
DocumentReader.Instance().customization().edit().setActivityIndicatorSize(80).apply();
DocumentReader.Instance().customization().edit().setActivityIndicatorSize(80).apply()

Next Steps