這篇文章主要介紹Android怎么實現(xiàn)簡單的popupwindow提示框,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:申請域名、虛擬主機、營銷軟件、網(wǎng)站建設(shè)、潞州網(wǎng)站維護、網(wǎng)站推廣。
Popupwindow大家肯定都特別熟悉了 像一般的提示框的話我們會用Dialog來做 但是隨著設(shè)計要求的不斷提高,App中各式各樣的提示框都有,很明顯普通的Dialog實現(xiàn)起來就比較吃力了 所以用Popupwindow來實現(xiàn)是最好不過了 ,于是我也自己寫了一個popupwindow彈出的一個方法,代碼量少簡單靈活 先看一下效果圖
大致效果就是這樣 當(dāng)然你也可以將layout中的布局換成自己的布局 接下來是代碼
private void ejectPopup() { View parent = ((ViewGroup) this.findViewById(android.R.id.content)).getChildAt(0); View popView = View.inflate(this, R.layout.details_share, null); int width = getResources().getDisplayMetrics().widthPixels; int height = getResources().getDisplayMetrics().heightPixels; // int i = height /5*2; popWindow = new PopupWindow(popView, width, ViewGroup.LayoutParams.WRAP_CONTENT); popWindow.setAnimationStyle(R.style.Search_PopupWindowAnimation); popWindow.setFocusable(true); popWindow.setOutsideTouchable(false);// 設(shè)置同意在外點擊消失 ColorDrawable dw = new ColorDrawable(0x30000000); popWindow.setBackgroundDrawable(dw); popWindow.showAtLocation(parent, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, 0); popWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);//被home鍵擋住 //給popup中的按鈕做監(jiān)聽 WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.alpha = (float) 0.7; //0.0-1.0 getWindow().setAttributes(lp); popWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.alpha = (float) 1; //0.0-1.0 getWindow().setAttributes(lp); } }); }
這個就是調(diào)用的方法 背景變暗可以通過這段代碼來實現(xiàn)
popWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.alpha = (float) 1; //0.0-1.0 getWindow().setAttributes(lp); } });
當(dāng)讓也可以讓ui妹子給你切一個透明的背景圖片
最后是layout中的代碼
ok 沒了
以上是“Android怎么實現(xiàn)簡單的popupwindow提示框”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!