I want to change the ProgressDialog divider line (above title) from blue to red, but not on xml file, I want to this inside java code
@Override
protected void onPreExecute() {
super.onPreExecute();
progress = new ProgressDialog(LoginFragment.this.getContext());
progress.setTitle("Text");
progress.setMessage("Searching...");
progress.show();
}
I don't know if I can change this divider with android holo colors. What can I do?