久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

以編程方式在android中的軟輸入鍵盤上禁用語(yǔ)音到

Disable speech to text button (Micro phone) on soft input keyboard in android programmatically(以編程方式在android中的軟輸入鍵盤上禁用語(yǔ)音到文本按鈕(麥克風(fēng)))
本文介紹了以編程方式在android中的軟輸入鍵盤上禁用語(yǔ)音到文本按鈕(麥克風(fēng))的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

問(wèn)題描述

提前感謝您的幫助.

我正在開(kāi)發(fā)一個(gè)用于研究目的的 android 應(yīng)用程序,并且需要禁用軟輸入鍵盤上的語(yǔ)音轉(zhuǎn)文本按鈕.其原因是由于我正在開(kāi)發(fā)的應(yīng)用程序使用麥克風(fēng)而出現(xiàn)的并發(fā)問(wèn)題.我知道對(duì)于一般應(yīng)用程序,禁用鍵通常被認(rèn)為是不可能的(因?yàn)橛脩艨赡軙?huì)更改默認(rèn)鍵盤).我知道將使用默認(rèn)鍵盤.

I am developing an android application for research purposes and need to disable the speech to text button on the soft input keyboard. The reason for this is due to concurrency issues that arise since the application I am developing uses the microphone. I understand that for a general application disabling keys is generally seen as impossible (since users may change default keyboards). I know for a fact that the default keyboard will be used.

考慮到這一點(diǎn),是否可以禁用某些鍵?我相信至少我應(yīng)該能夠指定輸入類型,以便隱藏麥克風(fēng)按鈕.我這樣說(shuō)是因?yàn)槿绻以谠O(shè)置中禁用語(yǔ)音到文本(不是以編程方式,而是作為用戶手動(dòng)),麥克風(fēng)圖標(biāo)就會(huì)從鍵盤上移除.我愿意接受任何可能的解決方案(不使用默認(rèn)鍵盤除外),因?yàn)榇藨?yīng)用程序不會(huì)出現(xiàn)在 Play 商店中.

With this in mind is it possible to disable certain keys? I believe that at the least I should be able to specify the input type such that the microphone button is hidden. I say this because if I disable speech to text in the settings (not programmatically, but manually as a user) the microphone icon is removed from the keyboard. I'm open to any possible solution (with the exception of not using the default keyboard) as this application will not appear on the play store.

推薦答案

除了用戶設(shè)備中已經(jīng)存在的預(yù)定義鍵盤之外,您不能強(qiáng)制用戶輸入.

You can't force the user input through anything other than pre-defined keyboards that already exist in the user's device.

解決此問(wèn)題的唯一方法是編寫自己的自定義動(dòng)態(tài)鍵盤,這是一個(gè)非常糟糕的主意.

The only way you could get around this is by programming your own custom, on-the-fly keyboard, and that is a very bad idea.

只需在您正在查看的 EditText 中使用 XML 聲明以編程方式禁用語(yǔ)音輸入.你可以用屬性做到這一點(diǎn):

Just disable voice input programmatically by using XML declarations in the EditText you're looking at. You can do this with the attribute:

android:privateImeOptions="nm"   // nm stands for No Microphone.

如果你想以編程方式設(shè)置它,你可以試試這個(gè)::

If you want to set it programmatically you can try this::

        // deprecated i guess
        edt_txt.setPrivateImeOptions("nm");   
         // this one is new but it works only with Google Keyboard.
         edt_txt.setPrivateImeOptions("com.google.android.inputmethod.latin.noMicrophoneKey"); 

您可以在 CVS 表單中組合 PrivateImeOptions 參數(shù)中的值,因此最好的選擇是使用:

You can combine values in PrivateImeOptions parameter in CVS form so best option is to use:

                edt_txt.setPrivateImeOptions("nm,com.google.android.inputmethod.latin.noMicrophoneKey"); 

看看這里看看你有沒(méi)有可以找到您要查找的內(nèi)容.

Take a look through here and see if you can find what you're looking for.

有關(guān) Google 鍵盤的更多信息 這里 -> 尋找方法 setOptions

More info about Google Keyboard here -> look for method setOptions

這篇關(guān)于以編程方式在android中的軟輸入鍵盤上禁用語(yǔ)音到文本按鈕(麥克風(fēng))的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

相關(guān)文檔推薦

EditText: Disable Paste/Replace menu pop-up on Text Selection Handler click event(EditText:禁用文本選擇處理程序單擊事件上的粘貼/替換菜單彈出)
Multiline EditText with Done SoftInput Action Label on 2.3(2.3 上帶有完成 SoftInput 操作標(biāo)簽的多行 EditText)
How to detect the swipe left or Right in Android?(如何在 Android 中檢測(cè)向左或向右滑動(dòng)?)
Prevent dialog dismissal on screen rotation in Android(防止在Android中的屏幕旋轉(zhuǎn)對(duì)話框解除)
How do I handle ImeOptions#39; done button click?(如何處理 ImeOptions 的完成按鈕點(diǎn)擊?)
How do you set EditText to only accept numeric values in Android?(您如何將 EditText 設(shè)置為僅接受 Android 中的數(shù)值?)
主站蜘蛛池模板: 艹逼网 | 欧美国产日韩一区 | 亚洲伊人精品酒店 | 一区二区免费 | 国产精品无码专区在线观看 | 四虎影视免费观看 | 九九九久久国产免费 | 亚洲一区二区三区四区五区中文 | 在线一区 | 中文字幕91av | 99亚洲精品 | 日韩中文字幕在线 | 国产欧美精品区一区二区三区 | 一二三区视频 | 午夜精品久久久久久久久久久久久 | 国产色播av在线 | 人人鲁人人莫人人爱精品 | 99re视频精品 | 精品国产伦一区二区三区观看说明 | 国产精品久久久久久久久久 | 亚洲精品中文字幕在线观看 | 欧美精品在欧美一区二区少妇 | 免费在线国产视频 | 欧美日韩国产一区二区三区 | 亚洲精品久久久久久久久久久 | 亚洲理论在线观看电影 | 黄色片大全在线观看 | 中文字幕日韩一区 | 久久免费国产视频 | 成人免费大片黄在线播放 | www久久99| 狠狠的干狠狠的操 | 国产高清一区二区三区 | 日韩精品久久久久久 | 亚洲一区二区三区在线 | av黄色在线 | 国产精品爱久久久久久久 | 日韩欧美手机在线 | 国产精品免费播放 | 欧美一区二区三区在线看 | 成人亚洲综合 |