天天看點

設定Activity的透明度及大小

Display display = getWindowManager().getDefaultDisplay(); // 為擷取螢幕寬、高

   Window window = getWindow();

   LayoutParams windowLayoutParams = window.getAttributes(); // 擷取對話框目前的參數值

   windowLayoutParams.width = (int) (display.getWidth() * 1); // 寬度設定為螢幕的0.95

   windowLayoutParams.height = (int) (display.getHeight() * 0.2); // 高度設定為螢幕的0.6

   windowLayoutParams.alpha = 0.5f;// 設定透明度      

繼續閱讀