Android Popup Window Full Screen

2019-06-23 23:06发布

I want to create a popupwindow for fullscreen

i've used the following :

LayoutInflater inflater = (LayoutInflater) MainActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

layoutt = inflater.inflate(R.layout.loginto,(ViewGroup) findViewById(R.id.window1));

pwindow = new PopupWindow(layoutt,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,true);

This covers the action bar but not the full screen..

Also LayuotParams.WRAP_CONTENT is supported by api 11+ . i need the solution to work from api level 8.

2条回答
\"骚年 ilove
2楼-- · 2019-06-23 23:32

For the full screen you have to pass the MATCH_PARENT params instead of WRAP_CONTENT

pwindow = new PopupWindow(layout,LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT,true);
查看更多
唯我独甜
3楼-- · 2019-06-23 23:34

JAVA Version

 View view=getLayoutInflater().inflate(R.layout.dialog_complete_pause_work,null,false);

 PopupWindow popupWindow=new PopupWindow(view, ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);

 popupWindow.showAtLocation(view, Gravity.CENTER,0,0);

Kotlin Version:

val view = layoutInflater.inflate(R.layout.your_layout, null, false)

val popupWindow = PopupWindow(view, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)

popupWindow.showAtLocation(view, Gravity.CENTER, 0, 0)
查看更多
登录 后发表回答