There is a dialogue guidedialog . How to change the color of its title ( Title ) program. And if you can not programmatically, how can you?
final AlertDialog.Builder guidedialog = new AlertDialog.Builder(this); final View relativeLayout = getLayoutInflater().inflate(R.layout.guide_1, null); TextView textView = (TextView) relativeLayout.findViewById(R.id.textGuide); guidedialog.setTitle("Здравствуй!"); guidedialog.setView(relativeLayout); textView.setText("Вы достигли своей цели. Вы можете прямо сейчас начать новую, или сделать это позже!"); guidedialog.setPositiveButton("Понятно!", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { checkExp(); trueReset(mSqLiteDatabase); getActivity().finish(); dialog.dismiss(); } }); textView.setTextColor(Color.parseColor("#333")); guidedialog.create(); guidedialog.show();