बनाते समय 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();
style.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
एक अलग और शैली के माध्यम से शीर्षक के लिए एक अलग परिभाषित कर सकते हैं ।