我有一個EditText,我希望以編程方式進入由CursorControllers(句柄)指示的「文本選擇模式」,例如用戶長按EditText時。Android編輯文本 - 在「文本選擇模式」中輸入
任何示例或建議將高度讚賞。
我有一個EditText,我希望以編程方式進入由CursorControllers(句柄)指示的「文本選擇模式」,例如用戶長按EditText時。Android編輯文本 - 在「文本選擇模式」中輸入
任何示例或建議將高度讚賞。
可以粘貼一些文本的EditText由...
<EditText
android:id="@+id/et_link"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Link" />
「鏈接」 將在窗口的EditText apeear
嘗試
editText.onTextContextMenuItem(android.R.id.startSelectingText);
預蜂窩版本和
editText.onTouchEvent(MotionEvent.obtain(/* FakeLongClick */));
f或蜂窩和更新。
我不熟悉的運動賽事,但我認爲,如果你能夠模擬長按事件這應該工作...
以下是有關創建MotionEvents的有用問答:https://stackoverflow.com/questions/5867059/android-how-to-create-a-motionevent – Evan 2018-01-30 16:10:22
這不是我的問題的答案。 – Corje 2012-02-13 10:43:54