Dialog on Android KitKat seems to be cut

后端 未结 6 2046
鱼传尺愫
鱼传尺愫 2020-12-08 15:35

I used dialog theme for an Activity and it works fine on Android <= 4.3 but not on the latest KitKat 4.4. Here\'s a screenshot of the problem:

6条回答
  •  暖寄归人
    2020-12-08 16:19

    Just add this line of code in your activity's onCreate method.

    getWindow().setFlags(0x04000000, 0x04000000); // FLAG_TRANSLUCENT_STATUS

提交回复
热议问题