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.
For the full screen you have to pass the
MATCH_PARENT
params instead ofWRAP_CONTENT
JAVA Version
Kotlin Version: