Hello,
How I can do that and when exit my app to return to the default on screen keyboard.
The popup soft keyboard comes from the Android OS, we cannot change android system level's soft keyboard.
However, if you use <Entry>
to input characters in your application, we can change input type for all of your Entry
by Resources\Styles\Styles.xaml
, you can find <Style TargetType="Entry">
in Resources\Styles\Styles.xaml
, then add following xml.
<Setter Property="Keyboard" Value="Numeric" />
Or set <Entry Keyboard="Numeric"></Entry>
for all of Entry
s in your application.
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.