當前位置Xamarin的Android插入我有一個的EditText認爲我需要能夠在當前光標位置插入一些特殊的詞。我知道如何使用editview.SelectionStart找到它。我在實際在該位置插入新單詞時遇到問題。在EditText上
我希望能夠在該位置插入新字。
我已經試過這Android: Insert text into EditText at current position下xamarin插入格式似乎不存在。
我自己也嘗試這樣的代碼:
string word = "ReservedWord";
var insertPoint = currentField.SelectionStart;
editSubject.Text.Insert (insertPoint, word);
像Insert character between the cursor position in edit text
我怎樣才能做到這一點表示?
馬洛
唐法國
這是否意味着EDITTEXT的整個文本被複制來回?然而,我看到這個解決方案對文本的副本不感興趣。 –