14
วิธีการเปลี่ยนชุดรูปแบบสำหรับ AlertDialog
ฉันสงสัยว่ามีคนช่วยฉันออกไหม ฉันกำลังพยายามสร้าง AlertDialog แบบกำหนดเอง ในการทำเช่นนี้ฉันได้เพิ่มบรรทัดของรหัสต่อไปนี้ใน styles.xml <resources> <style name="CustomAlertDialog" parent="android:Theme.Dialog.Alert"> <item name="android:windowBackground">@drawable/color_panel_background</item> </style> </resources> color_panel_background.9.png ตั้งอยู่ในโฟลเดอร์ drawable นอกจากนี้ยังมีในโฟลเดอร์ res SDK ของ Android ต่อไปนี้เป็นกิจกรรมหลัก package com.customdialog; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; public class CustomDialog extends Activity { /** Called when the activity is first created. */ …