답변:
를 만들 때 AlertDialog
사용할 테마를 설정할 수 있습니다.
예-대화 상자 작성
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.MyAlertDialogStyle);
builder.setTitle("AppCompatDialog");
builder.setMessage("Lorem ipsum dolor...");
builder.setPositiveButton("OK", null);
builder.setNegativeButton("Cancel", null);
builder.show();
styles.xml-사용자 정의 스타일
<style name="MyAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<!-- Used for the buttons -->
<item name="colorAccent">#FFC107</item>
<!-- Used for the title and text -->
<item name="android:textColorPrimary">#FFFFFF</item>
<!-- Used for the background -->
<item name="android:background">#4CAF50</item>
</style>
결과
편집하다
제목의 모양을 변경하려면 다음을 수행하십시오. 먼저 새 스타일을 추가하십시오.
<style name="MyTitleTextStyle">
<item name="android:textColor">#FFEB3B</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
</style>
나중에 단순히이 스타일을 참조하십시오 MyAlertDialogStyle
:
<style name="MyAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
...
<item name="android:windowTitleStyle">@style/MyTitleTextStyle</item>
</style>
이런 방식으로 스타일을 통해 textColor
메시지 android:textColorPrimary
와 제목을 다르게 정의 할 수 있습니다 .
appcompat-v7
-새로운 컴포넌트의 하위 호환성을 API 레벨 7 (Android 2.1)로 가져옵니다
모든 응용 프로그램에 테마를 사용하고 두 번째 매개 변수를 사용하여 대화 상자의 스타일을 지정하지 마십시오
<style name="MyTheme" parent="Base.Theme.AppCompat.Light">
<item name="alertDialogTheme">@style/dialog</item>
<item name="colorAccent">@color/accent</item>
</style>
<style name="dialog" parent="Base.Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/accent</item>
</style>
테마에서 색상 악센트를 사용하는 내 응용 프로그램에서 테마 colorAccent와 함께 alertDialog의 단추를 표시하지 않습니다. 테마에 대화 상자 스타일을 추가해야합니다.
새로운 android.support.v7.app.AlertDialog를 사용하고 버튼의 색상이 다르고 사용자 정의 레이아웃이 필요한 경우 https://gist.github.com/JoachimR/6bfbc175d5c8116d411e를 확인하십시오.
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.custom_layout, null);
initDialogUi(v);
final AlertDialog d = new AlertDialog.Builder(activity, R.style.AppCompatAlertDialogStyle)
.setTitle(getString(R.string.some_dialog_title))
.setCancelable(true)
.setPositiveButton(activity.getString(R.string.some_dialog_title_btn_positive),
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
doSomething();
dismiss();
}
})
.setNegativeButton(activity.getString(R.string.some_dialog_title_btn_negative),
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dismiss();
}
})
.setView(v)
.create();
// change color of positive button
d.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
Button b = d.getButton(DialogInterface.BUTTON_POSITIVE);
b.setTextColor(getResources().getColor(R.color.colorPrimary));
}
});
return d;
}
Builder setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener)
있습니다. 어댑터를 서브 클래스 화하고 뷰를 조정하는 것까지 가고 싶지 않습니다.
@ reVerse 답변을 따르십시오.하지만 제 경우에는 이미 AppTheme
비슷한 속성이 있습니다.
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="android:textColor">#111</item>
<item name="android:textSize">13sp</item>
</style>
나는 그것을 해결했다.
1)에서 가져 오기 android.app.AlertDialog
를
android.support.v7.app.AlertDialog
2로 변경하십시오 .2 AppTheme
값을 null 값으로 대체 합니다.
<style name="MyAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<!-- Used for the buttons -->
<item name="colorAccent">#FFC107</item>
<!-- Used for the title and text -->
<item name="android:textColorPrimary">#FFFFFF</item>
<!-- Used for the background -->
<item name="android:background">#4CAF50</item>
<item name="android:textColor">@null</item>
<item name="android:textSize">@null</item>
</style>
.
AlertDialog.Builder builder = new AlertDialog.Builder(mContext, R.style.MyAlertDialogStyle);
다른 사람들을 돕기를 바랍니다.
나와 같은 경우 AppCompat에서 일부 색상을 수정하고 싶습니다. 대화 상자에서 고유하게 변경 해야하는 유일한 색상은 배경입니다. 그런 다음에 색상을 설정하기 만하면됩니다 colorBackgroundFloating
.
중첩 된 테마없이 일부 색상을 간단히 수정하는 기본 테마는 다음과 같습니다.
<style name="AppTheme" parent="Theme.AppCompat">
<item name="colorPrimary">@color/theme_colorPrimary</item>
<item name="colorPrimaryDark">@color/theme_colorPrimaryDark</item>
<item name="colorAccent">@color/theme_colorAccent</item>
<item name="colorControlActivated">@color/theme_colorControlActivated</item>
<item name="android:windowBackground">@color/theme_bg</item>
<item name="colorBackgroundFloating">@color/theme_dialog_bg</item><!-- Dialog background color -->
<item name="colorButtonNormal">@color/theme_colorPrimary</item>
<item name="colorControlHighlight">@color/theme_colorAccent</item>
</style>
<item name="editTextColor">@color/white</item>
<item name="android:textColor">@color/white</item>
<item name="android:textColorHint">@color/gray</item>
<item name="android:textColorPrimary">@color/gray</item>
<item name="colorControlNormal">@color/gray</item>
<item name="colorControlActivated">@color/white</item>
<item name="colorControlHighlight">#30FFFFFF</item>