question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Expand to full screen

See original GitHub issue

Is it possible to expand the AXEmojiPopupLayout to have a height of the display screen? In case I would want it to be a standalone component? Or to display it above the edit text itself?

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
dbreskvarcommented, Sep 29, 2022

Works like a charm! Thank you!

0reactions
Aghajaricommented, Sep 28, 2022

@dbreskvar Try this code disableEmojiViewCategoryParallax(emojiView); just after creating the view.

    public static void disableEmojiViewCategoryParallax(AXSingleEmojiView emojiView) {
        try {
            Field field = emojiView.getClass().getDeclaredField("scrollListener2");
            field.setAccessible(true);
            //noinspection ConstantConditions
            emojiView.getRecyclerView().removeOnScrollListener(
                    (RecyclerView.OnScrollListener) field.get(emojiView));
        } catch (Exception ignore) {
        }
    }
Read more comments on GitHub >

github_iconTop Results From Across the Web

What Is The Keyboard Shortcut For Making A Window Full ...
A very common shortcut, particularly for browsers, is the F11 key. It can take your screen into and out of full-screen mode quickly...
Read more >
Use a keyboard shortcut to switch between full screen and ...
When screen space is at a premium and you only need SecureCRT on your screen, press ALT+ENTER (Windows) or COMMAND+ENTER (Mac). The application...
Read more >
How to Use a Shortcut and Go Full Screen - Alphr
For most apps and games, you can use the standard Alt+Enter combination. Simply press and hold the two buttons simultaneously, and your app/game ......
Read more >
Make Start full screen - Microsoft Support
Select Start , then select Settings > Personalization . Select Start , and then turn on Use Start full screen. The next time...
Read more >
Windows 10 Tip: How to make Start full screen
Use Start full screen. The next time you open Start, it will fill the entire desktop. · All apps. If you'd just like...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found