A cloud-based task management app from Microsoft that helps users organize and manage daily tasks across devices.
It seems you are experiencing issues with the soft keyboard on your Android device, which is covering the bottom of your TODO note and preventing you from editing it effectively. This can happen when the soft keyboard input mode is not set correctly. In .NET MAUI, you can adjust the soft keyboard input mode by using the WindowSoftInputModeAdjust settings. The two options available are Pan and Resize. The Resize option resizes the window to make room for the keyboard, while Pan simply moves the content up without resizing.
To resolve your issue, you might want to ensure that your application is set to use WindowSoftInputModeAdjust.Resize. This can help prevent the keyboard from covering your input fields. If you are developing the application, you can set this in your XAML or C# code as follows:
In XAML:
<Application ...
xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls"
android:Application.WindowSoftInputModeAdjust="Resize">
...
</Application>
In C#:
using Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;
...
App.Current.On<Microsoft.Maui.Controls.PlatformConfiguration.Android>().UseWindowSoftInputModeAdjust(WindowSoftInputModeAdjust.Resize);
If you are not the developer, consider reaching out to the app's support team to report this issue and suggest they implement the Resize option for the soft keyboard input mode.
Additionally, if you are experiencing syncing issues that lead to formatting changes or character deletions, it may be beneficial to check for updates to the app or reinstall it to see if that resolves the problem.
References: