Popup Window Is Not Properly Shown In Android L
this is how it looks like on android L : where as on jelly bean it looks like : here is layout xml file:
Solution 1:
I have the following line in my value-21's style.xml
<item name="android:fitsSystemWindows">true</item>
This was the problem for me. But I cannot remove this line because of the reason which I explain here
so I added android:fitsSystemWindows="false"
in each view of PopupWindow layout.
vooolaaaa!!! solved.
Post a Comment for "Popup Window Is Not Properly Shown In Android L"