By default, the feedback dialog adopts your app’s theme. However, if you’d like to tailor the dialog’s appearance to match your brand or preferences, the SDK provides several customization options.
You can customize the following elements by calling the appropriate methods on FeedbackFormManager before showing the dialog:
Customize the title’s text color:
feedbackManager.setDialogTitleTextColor(getColor(R.color.green));
Customize the description’s text color:
feedbackManager.setDialogDescriptionTextColor(getColor(R.color.cyan));
Customize the background color of the Submit button:
feedbackManager.setDialogSubmitButtonBackgroundColor(getColor(R.color.green));
Customize the text color of the Submit button:
feedbackManager.setDialogSubmitButtonTextColor(getColor(R.color.white));
Customize the text color of the Cancel / Not Now button:
feedbackManager.setDialogCancelButtonTextColor(getColor(R.color.cyan));