In SAPUI5 can I disable fullscreen mode for sap.m.Input suggestions on mobile? - sapui5

Is there a way to prevent a sap.m.Input with showSuggestion set to true from going into fullscreen mode when a mobile user focuses on it and enters text in it?
Here's a screenshot of what I'm talking about:
For my use case, 95% of the time users won't see a suggestion so having it enter fullscreen mode is very disruptive and confusing.

https://experience.sap.com/fiori-design-web/input-field/
Size S (Smartphones)
Cozy mode:
When the user clicks or taps the input field, a new full screen dialog opens in which suggested items can be selected. Here, the pop-in feature of the responsive table is used.
No, that's how the input control works on mobile.

Related

How to remove Accessibility shortcut option from my Accessibility app?

I have an AccessibilityService that will break if the user turns it on and off through the Android system user interface. I only want the user to be able to disable/enable AccessibilityService through my own Activity which will handle shutting it on and off correctly.
I never encountered this feature before until I tested my app on newer devices. On Android 11 devices there is suddenly an option to toggle "Accessibility Shortcut". This will add a button at the bottom corner the navigation buttons OR it will allow the user to toggle the AccessibilityService by holding both volume buttons at the same time. For my app, it say's it will add the toggle near the navigation buttons.
How do I remove this option?
I am running into the exact same problems. Users tend to enable all switch button they see without reading explanation or videos. Since accessibility shortcut interfere in a bad way with the accessibility service, they got a non working experience.
It seems at first sight there is no option for developpers to hide the option for their accesibility services...

how open a small page in dialog?

I am looking for a solution for display a window over the page like a dialog box but this box will contains a lot of information. It is for my betting game, i display a list of game with a choice between 1 N and 2.
Here is an image of a betting game named netbet :
As you can see i have selected 2.10 in the game Slavia Mozyr/ FC Minsk and a window appears at the bottom of the page for set the amount of money i need to bet. I think it will be better,because mobile screen are very little, displaying a window over the page like a dialog box. Is there a solution for do that in flutter ? Thanks
You might want to use Bottom sheet which does the exact task. It opens a small 'page' (read: widget) over the normal app screen. It'll allow to place the bet etc. It vanishes when use taps anywhere outside.
Sample implementation is here. You can also check solid bottom sheet.

Fullscreen swf blocking facebook authentication

I have a problem with signing in to facebook when my swf is in fullscreen mode.
The popup is blocked somehow and user can't enter his/her credentiatials.
I am using fullScreenInteractive mode. In fullScreen mode the problem still occurs.
You have to go out of fullscreen mode by yourself anytime you need an html popup to be visible (think of flash fullscreen mode as an additional window over your browser window, anything happening in the page will be invisible):
stage.displayState = StageDisplayState.NORMAL;
this is not only for authentication, but also for sharing, requesting, inviting, any popup...
You can't go back to fullscreen automatically after authentication either, since it requires a mouse click.
A kind of workaround would be to store an "unvoluntary out of fullscreen" flag and use the next mouse click event to go back to fullscreen, but IMO cleanest way would be by a flash back-to-fullscreen yes/no popup

Disable scrolling on Soft Keyboard launch

I've been struggling with this for several days. I have a very simple page in my mobile app with a textarea input and when I click on it the soft keyboard appears and scrolls the header of my page out of view. Is there a way to prevent this default scrolling?
Your is the default functionality of Phones, When user completes typing the screen automatically scroll backs, Kindly check it, If it works please reply.

iPhone and iPad wordpress menu BAD behavior

On this site : mecanomedic.com, the menu template work fine in "normal" desktop browser, but dont slide down on ipad-iphone device. What can be the problem ?
Some tell me it's a css problem, but HOW safari desktop work ?
The problem is that the menu expansion relies on the user hovering with a mouse. On touch devices like iPads & iPhones, the hovering gesture can't be replicated because there's only one input- touch. If I were you, I'd take a look at Twitter's Bootstrap menu setup and perhaps use media queries to serve up a different menu on smaller screen sizes.
Here's an example of a Bootstrap navigation bar in action (you'll have to inspect the code to see how it works).
Add a href to the top-level <a>'s so that they can be focusable:
Produits
Elements that are focusable receive mouse events and hover styles when the user taps on them.
As #Matt stated, the problem is that your menu relies on a hover event and unfortunately that event is unavailable on touch screen devices.
One way to fix this would be to:
Check if the current user's device is an iOS device
If the device is an iOS device, use javascript to trigger a menu item's "show event" when the menu button is CLICKED instead of ROLLED OVER / HOVERED.
This would result in the menu being shown when the user taps a menu button.