1
我想要在客戶對話框背後的藍色半透明。但我沒有得到藍色android-透明背景的對話框(任何顏色)
下面是對話聲明代碼:
final Dialog dialog = new Dialog(BookAppointmentActivity.this,R.style.TranslucentBlue);
//Dialog dialog = new Dialog(BookAppointmentActivity.this, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
dialog.setContentView(R.layout.customedialog);
Window window = dialog.getWindow();
window.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
dialog.show();
這裏是我的style.xml
<color name="transparent_green_color">@color/dialog_back</color>
<style name="TranslucentBlue" parent="android:Theme.Translucent">
<item name="android:windowBackground">@color/transparent_green_color</item>
</style>