如何在Xamarin Forms中的键盘上禁用“语音到文本”按钮(听写按钮)?

时间:2016-07-28 20:55:27

标签: android ios xamarin.ios xamarin.android xamarin.forms

我想在Android和iOS的Xamarin表单中禁用键盘上的语音到文本按钮。

我的问题是,我是否需要实现自定义渲染,因为我找不到适用于Android和iOS的通用代码。

我在下面找到了在本机iOS中实现的链接

Disable Dictation button on the keyboard of iPhone 4S / new iPad

任何建议都将不胜感激。您还可以建议我可以在Xamarin Forms中复制的本机平台方法

谢谢

1 个答案:

答案 0 :(得分:0)

最后,我通过为文本框和文本区域(编辑器)创建自定义渲染来实现此目的,下面的代码适用于我 在表单中,我创建了这个类。

using Xamarin.Forms;

namespace CustomRenderer
{
    public class MyEntry : Entry
    {
    }
}

在android中我为MyEntry创建了自定义渲染。

using Xamarin.Forms.Platform.Android;
using Xamarin.Forms;
using CustomRenderer;
using CustomRenderer.Android;

[assembly: ExportRenderer (typeof(MyEntry), typeof(MyEntryRenderer))]
namespace CustomRenderer.Android
{
    class MyEntryRenderer : EntryRenderer
    {
        protected override void OnElementChanged (ElementChangedEventArgs<Entry> e)
        {
            base.OnElementChanged (e);

            if (Control != null) {
                Control.SetBackgroundColor (global::Android.Graphics.Color.LightGreen);
                Control.PrivateImeOptions = "nm";
            }
        }
    }
}

下面为iOS渲染。

using Xamarin.Forms.Platform.iOS;
using Xamarin.Forms;
using UIKit;
using CustomRenderer;
using CustomRenderer.iOS;

[assembly: ExportRenderer (typeof(MyEntry), typeof(MyEntryRenderer))]
namespace CustomRenderer.iOS
{
    public class MyEntryRenderer : EntryRenderer
    {
        protected override void OnElementChanged (ElementChangedEventArgs<Entry> e)
        {
            base.OnElementChanged (e);

            if (Control != null) {
                // do whatever you want to the UITextField here!
                Control.BackgroundColor = UIColor.FromRGB (204, 153, 255);
                Control.BorderStyle = UITextBorderStyle.Line;
                Control.KeyboardType = UIKeyboardType.EmailAddress; 
            }
        }
    }
}

在xaml中我有以下语法。

<?xml version="1.0" encoding="UTF-8" ?>
<ContentPage
    xmlns="http://xamarin.com/schemas/2014/forms"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    xmlns:local="clr-namespace:CustomRenderer;assembly=CustomRenderer"
    x:Class="CustomRenderer.MainPageXaml">
    <StackLayout VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
        <Label Text="Hello, Custom Renderer!" />
        <local:MyEntry Text="In Shared Code" /> 
    </StackLayout>
</ContentPage>

通过上述方法,我成功禁用了iOS和Android键盘的听写按钮。