當我運行此代碼時,將顯示警告對話框,但對話框周圍有一個白色邊框,邊框也很小。我不想要這個白色的邊框,我想要90度角的真實角落。我希望你明白我想要做的事情。更改AlertDialog的樣式
AlertDialog.Builder ad = new AlertDialog.Builder(this);
Button bbb=new Button(MvcnContactList.this);
ad.setView(bbb);
alertDialog = ad.create();
alertDialog.show();
有沒有......我想樣式的警告對話框中的邊界,所以設置只是一個沒有辦法樣式警告對話框不顯示文本的顏色或文本大小或類似的東西主題也許是解決這個問題的方法。但我不知道要覆蓋哪些屬性。
感謝,
編輯: 例如這種風格覆蓋文字顏色以00FF00,這是很酷,但其性質我應該重寫,使邊角不圓和壽去除白色boreder
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AlertDialogCustom" parent="@android:style/AlertDialog">
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
<item name="android:textSize">10sp</item>
</style>
</resources>
也許這可以幫助你: http://stackoverflow.com/questions/2422562/how-to-change-theme-for-alertdialog – rockeye
這是很好的鏈接,但我不覆蓋邊界的屬性... – Lukap