เมื่อสร้าง 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
และแตกต่างกันสำหรับชื่อเรื่องผ่านสไตล์