Hi,
I have added to my mainactivity: Window.SetSoftInputMode(Android.Views.SoftInput.AdjustResize);
But I have some issues with my forms in other pages.
I have the exceptionbelow when I tap in the entry
If I remove Window.SetSoftInputMode(Android.Views.SoftInput.AdjustResize) it works well.
My code is:
<StackLayout
Grid.Row="1"
Spacing="40"
Padding="40,0"
Margin="0,40" Orientation="Vertical"
VerticalOptions="Center">
<!--- Email -->
<Entry Keyboard="Email"
Text="{Binding UserName }"
PlaceholderColor="{ DynamicResource BrandBlockTextColor }"
Placeholder="{ extensions:Translate Email or Username }"
Style="{ StaticResource SingleLineEntryStyle }"
/>
What is the workarround?