Khi tạo, AlertDialog
bạn có thể thiết lập một chủ đề để sử dụng.
Ví dụ - Tạo hộp thoại
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();
style.xml - Kiểu tùy chỉnh
<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>
Kết quả
Biên tập
Để thay đổi Giao diện của Tiêu đề, bạn có thể làm như sau. Đầu tiên thêm một phong cách mới:
<style name="MyTitleTextStyle">
<item name="android:textColor">#FFEB3B</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
</style>
sau đó chỉ cần tham khảo phong cách này trong MyAlertDialogStyle
:
<style name="MyAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
...
<item name="android:windowTitleStyle">@style/MyTitleTextStyle</item>
</style>
Bằng cách này, bạn có thể xác định khác nhau textColor
cho thông báo qua android:textColorPrimary
và khác với tiêu đề thông qua kiểu.