#android #android-studio-2.2
#Android #android-studio-2.2
Вопрос:
Учитывая функцию как
private void showInputDialog() {
final AlertDialog.Builder alert = new AlertDialog.Builder(getActivity());
final EditText input = new EditText(getActivity());
input.setSingleLine();
FrameLayout container = new FrameLayout(getActivity());
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
params.leftMargin= convertDpToPx(25); //remember to scale correctly
params.rightMargin= convertDpToPx(30);
input.setLayoutParams(params);
container.addView(input);
alert.setTitle("Change City");
alert.setMessage("Hey there, could not find the city you wanted. Please enter a new one:n");
alert.setView(container);
alert.setPositiveButton("Go", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
changeCity(input.getText().toString());
}
});
alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
alert.show();
}
Теперь, когда я получаю этот AlertDialog.Builder в моем приложении цвета кнопок — зеленые (по умолчанию с Android 5), но цвет текста редактирования — розовый (R.color.coloraccent). Как я могу изменить цвет кнопок на розовый?
Любая помощь будет оценена
Комментарии:
1. установите стиль в alerdialog.
Ответ №1:
попробуйте так
alertDialog.show();
Только после того, как был вызван .show() .
попробуйте этот фрагмент
//for negative side button
alertDialog.getButton(dialog.BUTTON_NEGATIVE).setTextColor(neededColor);
//for positive side button
alertDialog.getButton(dialog.BUTTON_POSITIVE).setTextColor(neededColor);
Ответ №2:
Вы можете создать эту тему. Кнопки используют accentColor в вашей теме по умолчанию для textColor, как вы отметили, чтобы изменить это, вы должны:
Измените тему вашего приложения в res/values/styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
...
<item name="buttonBarPositiveButtonStyle">@style/Base.Widget.AppCompat.Button.Borderless.MyStyle</item>
</style>
И добавьте свой стиль кнопки в тему кнопки AlertDialog
<style name="Base.Widget.AppCompat.Button.Borderless.MyStyle">
<item name="android:textColor">@color/colorAccent</item>
</style>
Примечание
Это повлияет на все AlertDialogs, а не только на один. Вы также можете создать новую отдельную тему и добавить ее в AlertDialog.Конструктор, как new AlertDialog.Builder(getActivity(), R.style.MyAlertDialogTheme)
Комментарии:
1. Это не сработает, поскольку AlertDialog использует
?alertDialogTheme
AppTheme
. Вам придется переопределить тему диалогового окна оповещения и стиль кнопки внутри него.
Ответ №3:
вам нужно добавить пользовательский вид в окно оповещения. создает файл макета с именем «my_custom_alert_window», затем сделайте, как показано ниже:
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.my_custom_alert_window, null);
dialogBuilder.setView(dialogView);
Button btn = (Button) dialogView.findViewById(R.id.label_field);
btn.setBackgroundColor(....);
AlertDialog alertDialog = dialogBuilder.create();
alertDialog.show();
затем вы можете изменить цвет фона кнопки, как указано выше