我編寫了一個顯示彈出對話框的android代碼,但我想將背景顏色從黑色更改爲白色,然後更改寫入的顏色。更改彈出對話框的背景顏色
這是該對話框的代碼:
mPrefs = PreferenceManager.getDefaultSharedPreferences(this);
Boolean welcomeScreenShown = mPrefs.getBoolean(welcomeScreenShownPref, false);
if (!welcomeScreenShown) {
String whatsNewText = getResources().getString(R.string.Text);
new AlertDialog.Builder(this).setMessage(whatsNewText).setPositiveButton(
R.string.ok, new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
}).show();
SharedPreferences.Editor editor = mPrefs.edit();
editor.putBoolean(welcomeScreenShownPref, true);
editor.commit(); // Very important to save the preference
}
它完美的作品 – Rick
很好的答案+1 –
它現在已經棄用?現在有什麼建議可以這樣做? – Dinesh