eschao / android-PageFlip

3D Style Page Flip on Android
Apache License 2.0
1.74k stars 262 forks source link

Landscape Mode Issue #59

Open MuzzamilDev opened 4 years ago

MuzzamilDev commented 4 years ago

Hi , I hope you are doing well , your sample code is not working on landscape mode. showing a black screen. I am Using Samsung S8 (OS 09) device-2020-07-22-115755

eschao commented 3 years ago

On simulator or phone?

Skreewd commented 3 years ago

Im getting this issue as well. One plus 8 - android 10 I'd love to have a working version since the effect is so good

NimeshHirpara commented 1 year ago

Comments following lines in SampleActivity is working for me

if (Build.VERSION.SDK_INT < 16) {
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
        } else {
            mPageFlipView.setSystemUiVisibility(
                    View.SYSTEM_UI_FLAG_FULLSCREEN |
                            View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
                            View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION |
                            View.SYSTEM_UI_FLAG_IMMERSIVE |
                            View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
        }