-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Android] Fix issue where status bar appears double height in non-ful…
…l screen mode (#319) * Fix issue where status appears double height in non-full screen mode * Updating package version --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
fc02ff1
commit c5e486b
Showing
3 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
...c/main/java/com/pdftron/pdftronflutter/nativeviews/FlutterPdfViewCtrlTabHostFragment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.pdftron.pdftronflutter.nativeviews; | ||
|
||
import com.pdftron.pdf.controls.PdfViewCtrlTabHostFragment2; | ||
|
||
public class FlutterPdfViewCtrlTabHostFragment extends PdfViewCtrlTabHostFragment2 { | ||
@Override | ||
protected void updateFullScreenModeLayout() { | ||
if (isInFullScreenMode()) { | ||
super.updateFullScreenModeLayout(); | ||
} | ||
// do nothing if not in full screen mode | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters