2015-11-20 237 views
1

我在反應原生中使用數字鍵盤鍵盤,我想在完成按鈕時隱藏鍵盤,爲此我想添加完成按鈕在鍵盤上方,有沒有像iOS應用程序隱藏鍵盤的可能性,任何幫助非常感謝如何使用react-native在數字鍵盤上添加'完成'按鈕

+0

[如何在「數字鍵盤」上方顯示「DONE」按鈕的可能重複?使用react-native](http://stackoverflow.com/questions/33995950/how-to-show-done-button-above-number-pad-keyboard-using-react-native) – Chi

回答

2

我不確定這是否正是你想要的,但你可以添加一個'完成'按鈕使用鍵盤prop的returnKeyType。

E.g:returnKeyType={ 'done' }

更多的信息在這裏https://facebook.github.io/react-native/docs/textinput.html#returnkeytype

+2

我認爲,這是不可能的keyboardType =「數字鍵盤」,returnkeyType ='完成'不能在keyboardType =「數字鍵盤」 –

0

returnKeyLabel - 什麼是按鈕的文本。

onSubmitEditing - 單擊操作。 Keyboard.dismiss這裏關閉鍵盤。

<TextInput 
    returnKeyLabel='Done' 
    returnKeyType='done' 
    onSubmitEditing={Keyboard.dismiss} /> 
相關問題