您好,登錄后才能下訂單哦!
這篇文章主要介紹Dialog如何實現(xiàn)全屏效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
dialog即使設置全屏了,但還是有狀態(tài)欄占用高度這;
直接將下面這行代碼放到你的dialog中即可
@Override protected void onStart() { super.onStart(); int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_FULLSCREEN; this.getWindow().getDecorView().setSystemUiVisibility(uiOptions); }
順便說下自定義dialog寬高:
WindowManager.LayoutParams attributes = getWindow().getAttributes(); attributes.width = width; attributes.height = height; getWindow().setAttributes(attributes);
添加兩個基本的style
<!--普通dialog樣式--> <style name="customerDialog" parent="@android:style/Theme.Dialog"> <item name="android:windowFrame">@null</item> <item name="android:windowIsFloating">true</item> <item name="android:windowIsTranslucent">true</item> <item name="android:windowNoTitle">true</item> <item name="android:background">@android:color/transparent</item> <!-- <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item> --> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowSoftInputMode">stateHidden|adjustPan</item> </style> <!--透明背景dialog樣式--> <style name="TransparentDialogStyle" parent="@android:style/Theme.Dialog"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowNoTitle">true</item> <item name="android:backgroundDimEnabled">false</item> </style>
補充知識:Android關于全屏設置和隱藏狀態(tài)欄、沉浸式狀態(tài)欄的總結
1.全屏和推出全屏
實現(xiàn)全屏
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
有一個View.setLayoutparams的方法,注意這個LayoutParams跟的不是自身的LayoutParams而是父容器的layoutParams
退出全屏
final WindowManager.LayoutParams attrs = getWindow().getAttributes(); attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().setAttributes(attrs); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
2.隱藏狀態(tài)欄
getWindow().getDecorView().setSystemUiVisibility(View.INVISIBLE);
參數(shù):
View.SYSTEM_UI_FLAG_VISIBLE:顯示狀態(tài)欄,Activity不全屏顯示(恢復到有狀態(tài)的正常情況)。
View.INVISIBLE:隱藏狀態(tài)欄,同時Activity會伸展全屏顯示。
View.SYSTEM_UI_FLAG_FULLSCREEN:Activity全屏顯示,且狀態(tài)欄被隱藏覆蓋掉。
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN:Activity全屏顯示,但狀態(tài)欄不會被隱藏覆蓋,狀態(tài)欄依然可見,Activity頂端布局部分會被狀態(tài)遮住。
View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION:效果同View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
View.SYSTEM_UI_LAYOUT_FLAGS:效果同View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
View.SYSTEM_UI_FLAG_HIDE_NAVIGATION:隱藏虛擬按鍵(導航欄)。有些手機會用虛擬按鍵來代替物理按鍵。
View.SYSTEM_UI_FLAG_LOW_PROFILE:狀態(tài)欄顯示處于低能顯示狀態(tài)(low profile模式),狀態(tài)欄上一些圖標顯示會被隱藏。
3.沉浸式狀態(tài)欄(android4.4開始引進)
(1).通過SystemBarTintManager
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { setTranslucentStatus(true); SystemBarTintManager tintManager = new SystemBarTintManager(this); tintManager.setStatusBarTintEnabled(true); tintManager.setStatusBarTintResource(R.color.color_top_bg);// 通知欄所需顏色 } @TargetApi(19) private void setTranslucentStatus(boolean on) { Window win = getWindow(); WindowManager.LayoutParams winParams = win.getAttributes(); final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS; // WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION if (on) { winParams.flags |= bits; } else { winParams.flags &= ~bits; } win.setAttributes(winParams); }
(2).通過頂部增加同ActionBar顏色的view(如果設置后出現(xiàn)tittlebar則在清單文件里面配置activity的style為NoTittlebar)
Window window = getWindow(); window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); ViewGroup decorView = (ViewGroup) window.getDecorView(); view = new View(this); view.setLayoutParams(new ViewGroup.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, getStatusBarHeight(this))); view.setBackgroundColor(getResources().getColor(R.color.color_top_bg)); decorView.addView(view);
以上是“Dialog如何實現(xiàn)全屏效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。