Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストが含まれる EditText を含むアプリケーションがあります。EditText コンポーネントで触れた単語を取得するイベントを作成したいと考えています。それ、どうやったら出来るの?
前もって感謝します
こび
編集テキストから取得selected wordできます。
selected word
String text=yourEditText.getText().toString(); String slectedWord=text.subSequence(yourEditText.getSelectionStart(), yourEditText.getSelectionEnd());